正则匹配几个字母同时出现正则表达式匹配字符串if (mExt.matches("(dir)")) {
Bitmap dir = BitmapFactory.decodeResource(getResources(), R.drawabledisc_search_list_img);                        mMySkydriveItem.setNetdiscListImgs(dir);
} else if (mExt.matches("(doc|docx)")) {
Bitmap doc = BitmapFactory.decodeResource(getResources(), R.drawabledisc_word_file);
mMySkydriveItem.setNetdiscListImgs(doc);
} else if (mExt.matches("(xls)")) {
Bitmap xls = BitmapFactory.decodeResource(getResources(), R.drawabledisc_excel_file);
mMySkydriveItem.setNetdiscListImgs(xls);
} else if (mExt.matches("(ppt)")) {
Bitmap ppt = BitmapFactory.decodeResource(getResources(), R.drawabledisc_ppt_file);
mMySkydriveItem.setNetdiscListImgs(ppt);
} else if (mExt.matches("(jpg|jpeg|png|gif|bmp)")) {
Bitmap jpg = BitmapFactory.decodeResource(getResources(), R.drawabledisc_img_file);
mMySkydriveItem.setNetdiscListImgs(jpg);
} else if (mExt.matches("(rar|zip|tar|jar|iso)")) {
Bitmap zip = BitmapFactory.decodeResource(getResources(), R.drawabledisc_zip_file);
mMySkydriveItem.setNetdiscListImgs(zip);
} else if (mExt.matches("(acm|aif|aifc|aiff|ans|asf|aifc|avi|asp|ram|mov)")) {
Bitmap zip = BitmapFactory.decodeResource(getResources(), R.drawabledisc_zip_file);
mMySkydriveItem.setNetdiscListImgs(zip);
} else {
}

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。