Intent MIME 打开各种类型的文件
使用
public class MainActivity extends ListActivity {public static final String path = Environment.getExternalStorageDirectory().getPath() + File.separator;@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);List<String> mData = new ArrayList<String>(Arrays.asList("打开png图片", "使用Uri打开图片", "使用Uri打开图片2", "打开ppt", "打开excel", "打开word",//"打开mp4", "打开txt", "打开java", "打开mp3", "打开apk", //"打开html", "打开pdf"));ListAdapter mAdapter = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, mData);setListAdapter(mAdapter);}@Overrideprotected void onListItemClick(ListView l, View v, int position, long id) {switch (position) {case 0:FileOpenUtils.openFile(this, new File(path + "a.png"));break;case 1:FileOpenUtils.openFileByUri(this, Uri.parse("file://" + path + "a.png").toString());break;case 2:FileOpenUtils.openFileByUri(this, new Uri.Builder().scheme("file").encodedPath(path + "a.png").build().toString());break;case 3:FileOpenUtils.openFile(this, new File(path + "a.ppt"));break;case 4:FileOpenUtils.openFile(this, new File(path + "a.xlsx"));break;case 5:FileOpenUtils.openFile(this, new File(path + "a.docx"));break;//******************************************************************************************case 6:FileOpenUtils.openFile(this, new File(path + "video.mp4"));break;case 7:FileOpenUtils.openFile(this, new File(path + "a.txt"));break;case 8:FileOpenUtils.openFile(this, new File(path + "a.java"));break;case 9:FileOpenUtils.openFile(this, new File(path + "a.mp3"));break;case 10:FileOpenUtils.openFile(this, new File(path + "a.apk"));break;//******************************************************************************************case 11:FileOpenUtils.openFile(this, new File(path + "a.html"));break;case 12:FileOpenUtils.openFile(this, new File(path + "a.pdf"));break;}}}
打开各种文件的方法
public class FileOpenUtils {/** 使用自定义方法打开文件 */public static void openFile(Activity activityFrom, File file) {Intent intent = new Intent();intent.setDataAndType(Uri.fromFile(file), getMimeTypeFromFile(file));//也可使用 Uri.parse("file://"+file.getAbsolutePath());//以下设置都不是必须的intent.setAction(Intent.ACTION_VIEW);// 系统根据不同的Data类型,通过已注册的对应Application显示匹配的结果。intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);//系统会检查当前所有已创建的Task中是否有该要启动的Activity的Task//若有,则在该Task上创建Activity;若没有则新建具有该Activity属性的Task,并在该新建的Task上创建Activity。intent.addCategory(Intent.CATEGORY_DEFAULT);//按照普通Activity的执行方式执行activityFrom.startActivity(intent);}/**使用自定义方法获得文件的MIME类型 */public static String getMimeTypeFromFile(File file) {String type = "*/*";String fName = file.getName();//获取后缀名前的分隔符"."在fName中的位置。int dotIndex = fName.lastIndexOf(".");if (dotIndex > 0) {//获取文件的后缀名String end = fName.substring(dotIndex, fName.length()).toLowerCase(Locale.getDefault());//在MIME和文件类型的匹配表中找到对应的MIME类型。HashMap<String, String> map = MyMimeMap.getMimeMap();if (!TextUtils.isEmpty(end) && map.keySet().contains(end)) {type = map.get(end);}}Log.i("bqt", "我定义的MIME类型为:" + type);return type;}/** 使用系统API,根据url获得对应的MIME类型 */public static String getMimeTypeFromUrl(String url) {String type = null;//使用系统API,获取URL路径中文件的后缀名(扩展名)String extension = MimeTypeMap.getFileExtensionFromUrl(url);if (extension != null) {//使用系统API,获取MimeTypeMap的单例实例,然后调用其内部方法获取文件后缀名(扩展名)所对应的MIME类型type = MimeTypeMap.getSingleton().getMimeTypeFromExtension(extension);}Log.i("bqt", "系统定义的MIME类型为:" + type);return type;}/** 使用系统API打开文件 */public static void openFileByUri(Activity activityFrom, String uri) {Intent intent = new Intent();intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);//If set, this activity will become the start of a new task on this history stack.intent.setAction(Intent.ACTION_VIEW);// it is the generic action you can use on a piece of data to get the most reasonable合适的 thing to occurintent.addCategory(Intent.CATEGORY_DEFAULT);//Set if the activity should be an option选项 for the default action to perform on a piece of dataintent.setDataAndType(Uri.parse(uri), getMimeTypeFromUrl(uri));//Set the data for the intent along with an explicit指定的、明确的 MIME data typeactivityFrom.startActivity(intent);}}
文件扩展名-MIME类型匹配表
public class MyMimeMap {private static final HashMap<String, String> mapSimple = new HashMap<>();private static final HashMap<String, String> mapAll = new HashMap<>();/*** 常用"文件扩展名—MIME类型"匹配表。* 注意,此表并不全,也并不是唯一的,就像有人喜欢用浏览器打开TXT一样,你可以根据自己的爱好自定义。*/public static HashMap<String, String> getMimeMap() {if (mapSimple.size() == 0) {mapSimple.put(".3gp", "video/3gpp");mapSimple.put(".apk", "application/vnd.android.package-archive");mapSimple.put(".asf", "video/x-ms-asf");mapSimple.put(".avi", "video/x-msvideo");mapSimple.put(".bin", "application/octet-stream");mapSimple.put(".bmp", "image/bmp");mapSimple.put(".c", "text/plain");mapSimple.put(".chm", "application/x-chm");mapSimple.put(".class", "application/octet-stream");mapSimple.put(".conf", "text/plain");mapSimple.put(".cpp", "text/plain");mapSimple.put(".doc", "application/msword");mapSimple.put(".docx", "application/msword");mapSimple.put(".exe", "application/octet-stream");mapSimple.put(".gif", "image/gif");mapSimple.put(".gtar", "application/x-gtar");mapSimple.put(".gz", "application/x-gzip");mapSimple.put(".h", "text/plain");mapSimple.put(".htm", "text/html");mapSimple.put(".html", "text/html");mapSimple.put(".jar", "application/java-archive");mapSimple.put(".java", "text/plain");mapSimple.put(".jpeg", "image/jpeg");mapSimple.put(".jpg", "image/jpeg");mapSimple.put(".js", "application/x-javascript");mapSimple.put(".log", "text/plain");mapSimple.put(".m3u", "audio/x-mpegurl");mapSimple.put(".m4a", "audio/mp4a-latm");mapSimple.put(".m4b", "audio/mp4a-latm");mapSimple.put(".m4p", "audio/mp4a-latm");mapSimple.put(".m4u", "video/vnd.mpegurl");mapSimple.put(".m4v", "video/x-m4v");mapSimple.put(".mov", "video/quicktime");mapSimple.put(".mp2", "audio/x-mpeg");mapSimple.put(".mp3", "audio/x-mpeg");mapSimple.put(".mp4", "video/mp4");mapSimple.put(".mpc", "application/vnd.mpohun.certificate");mapSimple.put(".mpe", "video/mpeg");mapSimple.put(".mpeg", "video/mpeg");mapSimple.put(".mpg", "video/mpeg");mapSimple.put(".mpg4", "video/mp4");mapSimple.put(".mpga", "audio/mpeg");mapSimple.put(".msg", "application/vnd.ms-outlook");mapSimple.put(".ogg", "audio/ogg");mapSimple.put(".pdf", "application/pdf");mapSimple.put(".png", "image/png");mapSimple.put(".pps", "application/vnd.ms-powerpoint");mapSimple.put(".ppt", "application/vnd.ms-powerpoint");mapSimple.put(".pptx", "application/vnd.ms-powerpoint");mapSimple.put(".prop", "text/plain");mapSimple.put(".rar", "application/x-rar-compressed");mapSimple.put(".rc", "text/plain");mapSimple.put(".rmvb", "audio/x-pn-realaudio");mapSimple.put(".rtf", "application/rtf");mapSimple.put(".sh", "text/plain");mapSimple.put(".tar", "application/x-tar");mapSimple.put(".tgz", "application/x-compressed");mapSimple.put(".txt", "text/plain");mapSimple.put(".wav", "audio/x-wav");mapSimple.put(".wma", "audio/x-ms-wma");mapSimple.put(".wmv", "audio/x-ms-wmv");mapSimple.put(".wps", "application/vnd.ms-works");mapSimple.put(".xml", "text/plain");mapSimple.put(".xls", "application/vnd.ms-excel");mapSimple.put(".xlsx", "application/vnd.ms-excel");mapSimple.put(".z", "application/x-compress");mapSimple.put(".zip", "application/zip");mapSimple.put("", "*/*");}return mapSimple;}/*** 常用"文件扩展名—MIME类型"匹配表。* 注意,此表并不全,也并不是唯一的,就像有人喜欢用浏览器打开TXT一样,你可以根据自己的爱好自定义。*/public static HashMap<String, String> getMimeMapAll() {if (mapAll.size() == 0) {mapAll.put("3gp", "video/3gpp");mapAll.put("aab", "application/x-authoware-bin");mapAll.put("aam", "application/x-authoware-map");mapAll.put("aas", "application/x-authoware-seg");mapAll.put("ai", "application/postscript");mapAll.put("aif", "audio/x-aiff");mapAll.put("aifc", "audio/x-aiff");mapAll.put("aiff", "audio/x-aiff");mapAll.put("als", "audio/X-Alpha5");mapAll.put("amc", "application/x-mpeg");mapAll.put("ani", "application/octet-stream");mapAll.put("apk", "application/vnd.android.package-archive");mapAll.put("asc", "text/plain");mapAll.put("asd", "application/astound");mapAll.put("asf", "video/x-ms-asf");mapAll.put("asn", "application/astound");mapAll.put("asp", "application/x-asap");mapAll.put("asx", "video/x-ms-asf");mapAll.put("au", "audio/basic");mapAll.put("avb", "application/octet-stream");mapAll.put("avi", "video/x-msvideo");mapAll.put("awb", "audio/amr-wb");mapAll.put("bcpio", "application/x-bcpio");mapAll.put("bin", "application/octet-stream");mapAll.put("bld", "application/bld");mapAll.put("bld2", "application/bld2");mapAll.put("bmp", "image/bmp");mapAll.put("bpk", "application/octet-stream");mapAll.put("bz2", "application/x-bzip2");mapAll.put("cal", "image/x-cals");mapAll.put("ccn", "application/x-cnc");mapAll.put("cco", "application/x-cocoa");mapAll.put("cdf", "application/x-netcdf");mapAll.put("cgi", "magnus-internal/cgi");mapAll.put("chat", "application/x-chat");mapAll.put("class", "application/octet-stream");mapAll.put("clp", "application/x-msclip");mapAll.put("cmx", "application/x-cmx");mapAll.put("co", "application/x-cult3d-object");mapAll.put("cod", "image/cis-cod");mapAll.put("cpio", "application/x-cpio");mapAll.put("cpt", "application/mac-compactpro");mapAll.put("crd", "application/x-mscardfile");mapAll.put("csh", "application/x-csh");mapAll.put("csm", "chemical/x-csml");mapAll.put("csml", "chemical/x-csml");mapAll.put("css", "text/css");mapAll.put("cur", "application/octet-stream");mapAll.put("dcm", "x-lml/x-evm");mapAll.put("dcr", "application/x-director");mapAll.put("dcx", "image/x-dcx");mapAll.put("dhtml", "text/html");mapAll.put("dir", "application/x-director");mapAll.put("dll", "application/octet-stream");mapAll.put("dmg", "application/octet-stream");mapAll.put("dms", "application/octet-stream");mapAll.put("doc", "application/msword");mapAll.put("dot", "application/x-dot");mapAll.put("dvi", "application/x-dvi");mapAll.put("dwf", "drawing/x-dwf");mapAll.put("dwg", "application/x-autocad");mapAll.put("dxf", "application/x-autocad");mapAll.put("dxr", "application/x-director");mapAll.put("ebk", "application/x-expandedbook");mapAll.put("emb", "chemical/x-embl-dl-nucleotide");mapAll.put("embl", "chemical/x-embl-dl-nucleotide");mapAll.put("eps", "application/postscript");mapAll.put("eri", "image/x-eri");mapAll.put("es", "audio/echospeech");mapAll.put("esl", "audio/echospeech");mapAll.put("etc", "application/x-earthtime");mapAll.put("etx", "text/x-setext");mapAll.put("evm", "x-lml/x-evm");mapAll.put("evy", "application/x-envoy");mapAll.put("exe", "application/octet-stream");mapAll.put("fh4", "image/x-freehand");mapAll.put("fh5", "image/x-freehand");mapAll.put("fhc", "image/x-freehand");mapAll.put("fif", "image/fif");mapAll.put("fm", "application/x-maker");mapAll.put("fpx", "image/x-fpx");mapAll.put("fvi", "video/isivideo");mapAll.put("gau", "chemical/x-gaussian-input");mapAll.put("gca", "application/x-gca-compressed");mapAll.put("gdb", "x-lml/x-gdb");mapAll.put("gif", "image/gif");mapAll.put("gps", "application/x-gps");mapAll.put("gtar", "application/x-gtar");mapAll.put("gz", "application/x-gzip");mapAll.put("hdf", "application/x-hdf");mapAll.put("hdm", "text/x-hdml");mapAll.put("hdml", "text/x-hdml");mapAll.put("hlp", "application/winhlp");mapAll.put("hqx", "application/mac-binhex40");mapAll.put("htm", "text/html");mapAll.put("html", "text/html");mapAll.put("hts", "text/html");mapAll.put("ice", "x-conference/x-cooltalk");mapAll.put("ico", "application/octet-stream");mapAll.put("ief", "image/ief");mapAll.put("ifm", "image/gif");mapAll.put("ifs", "image/ifs");mapAll.put("imy", "audio/melody");mapAll.put("ins", "application/x-NET-Install");mapAll.put("ips", "application/x-ipscript");mapAll.put("ipx", "application/x-ipix");mapAll.put("it", "audio/x-mod");mapAll.put("itz", "audio/x-mod");mapAll.put("ivr", "i-world/i-vrml");mapAll.put("j2k", "image/j2k");mapAll.put("jad", "text/vnd.sun.j2me.app-descriptor");mapAll.put("jam", "application/x-jam");mapAll.put("jar", "application/java-archive");mapAll.put("jnlp", "application/x-java-jnlp-file");mapAll.put("jpe", "image/jpeg");mapAll.put("jpeg", "image/jpeg");mapAll.put("jpg", "image/jpeg");mapAll.put("jpz", "image/jpeg");mapAll.put("js", "application/x-javascript");mapAll.put("jwc", "application/jwc");mapAll.put("kjx", "application/x-kjx");mapAll.put("lak", "x-lml/x-lak");mapAll.put("latex", "application/x-latex");mapAll.put("lcc", "application/fastman");mapAll.put("lcl", "application/x-digitalloca");mapAll.put("lcr", "application/x-digitalloca");mapAll.put("lgh", "application/lgh");mapAll.put("lha", "application/octet-stream");mapAll.put("lml", "x-lml/x-lml");mapAll.put("lmlpack", "x-lml/x-lmlpack");mapAll.put("lsf", "video/x-ms-asf");mapAll.put("lsx", "video/x-ms-asf");mapAll.put("lzh", "application/x-lzh");mapAll.put("m13", "application/x-msmediaview");mapAll.put("m14", "application/x-msmediaview");mapAll.put("m15", "audio/x-mod");mapAll.put("m3u", "audio/x-mpegurl");mapAll.put("m3url", "audio/x-mpegurl");mapAll.put("ma1", "audio/ma1");mapAll.put("ma2", "audio/ma2");mapAll.put("ma3", "audio/ma3");mapAll.put("ma5", "audio/ma5");mapAll.put("man", "application/x-troff-man");mapAll.put("map", "magnus-internal/imagemap");mapAll.put("mbd", "application/mbedlet");mapAll.put("mct", "application/x-mascot");mapAll.put("mdb", "application/x-msaccess");mapAll.put("mdz", "audio/x-mod");mapAll.put("me", "application/x-troff-me");mapAll.put("mel", "text/x-vmel");mapAll.put("mi", "application/x-mif");mapAll.put("mid", "audio/midi");mapAll.put("midi", "audio/midi");mapAll.put("mif", "application/x-mif");mapAll.put("mil", "image/x-cals");mapAll.put("mio", "audio/x-mio");mapAll.put("mmf", "application/x-skt-lbs");mapAll.put("mng", "video/x-mng");mapAll.put("mny", "application/x-msmoney");mapAll.put("moc", "application/x-mocha");mapAll.put("mocha", "application/x-mocha");mapAll.put("mod", "audio/x-mod");mapAll.put("mof", "application/x-yumekara");mapAll.put("mol", "chemical/x-mdl-molfile");mapAll.put("mop", "chemical/x-mopac-input");mapAll.put("mov", "video/quicktime");mapAll.put("movie", "video/x-sgi-movie");mapAll.put("mp2", "audio/x-mpeg");mapAll.put("mp3", "audio/x-mpeg");mapAll.put("mp4", "video/mp4");mapAll.put("mpc", "application/vnd.mpohun.certificate");mapAll.put("mpe", "video/mpeg");mapAll.put("mpeg", "video/mpeg");mapAll.put("mpg", "video/mpeg");mapAll.put("mpg4", "video/mp4");mapAll.put("mpga", "audio/mpeg");mapAll.put("mpn", "application/vnd.mophun.application");mapAll.put("mpp", "application/vnd.ms-project");mapAll.put("mps", "application/x-mapserver");mapAll.put("mrl", "text/x-mrml");mapAll.put("mrm", "application/x-mrm");mapAll.put("ms", "application/x-troff-ms");mapAll.put("mts", "application/metastream");mapAll.put("mtx", "application/metastream");mapAll.put("mtz", "application/metastream");mapAll.put("mzv", "application/metastream");mapAll.put("nar", "application/zip");mapAll.put("nbmp", "image/nbmp");mapAll.put("nc", "application/x-netcdf");mapAll.put("ndb", "x-lml/x-ndb");mapAll.put("ndwn", "application/ndwn");mapAll.put("nif", "application/x-nif");mapAll.put("nmz", "application/x-scream");mapAll.put("nokia-op-logo", "image/vnd.nok-oplogo-color");mapAll.put("npx", "application/x-netfpx");mapAll.put("nsnd", "audio/nsnd");mapAll.put("nva", "application/x-neva1");mapAll.put("oda", "application/oda");mapAll.put("oom", "application/x-AtlasMate-Plugin");mapAll.put("pac", "audio/x-pac");mapAll.put("pae", "audio/x-epac");mapAll.put("pan", "application/x-pan");mapAll.put("pbm", "image/x-portable-bitmap");mapAll.put("pcx", "image/x-pcx");mapAll.put("pda", "image/x-pda");mapAll.put("pdb", "chemical/x-pdb");mapAll.put("pdf", "application/pdf");mapAll.put("pfr", "application/font-tdpfr");mapAll.put("pgm", "image/x-portable-graymap");mapAll.put("pict", "image/x-pict");mapAll.put("pm", "application/x-perl");mapAll.put("pmd", "application/x-pmd");mapAll.put("png", "image/png");mapAll.put("pnm", "image/x-portable-anymap");mapAll.put("pnz", "image/png");mapAll.put("pot", "application/vnd.ms-powerpoint");mapAll.put("ppm", "image/x-portable-pixmap");mapAll.put("pps", "application/vnd.ms-powerpoint");mapAll.put("ppt", "application/vnd.ms-powerpoint");mapAll.put("pqf", "application/x-cprplayer");mapAll.put("pqi", "application/cprplayer");mapAll.put("prc", "application/x-prc");mapAll.put("proxy", "application/x-ns-proxy-autoconfig");mapAll.put("ps", "application/postscript");mapAll.put("ptlk", "application/listenup");mapAll.put("pub", "application/x-mspublisher");mapAll.put("pvx", "video/x-pv-pvx");mapAll.put("qcp", "audio/vnd.qcelp");mapAll.put("qt", "video/quicktime");mapAll.put("qti", "image/x-quicktime");mapAll.put("qtif", "image/x-quicktime");mapAll.put("r3t", "text/vnd.rn-realtext3d");mapAll.put("ra", "audio/x-pn-realaudio");mapAll.put("ram", "audio/x-pn-realaudio");mapAll.put("rar", "application/x-rar-compressed");mapAll.put("ras", "image/x-cmu-raster");mapAll.put("rdf", "application/rdf+xml");mapAll.put("rf", "image/vnd.rn-realflash");mapAll.put("rgb", "image/x-rgb");mapAll.put("rlf", "application/x-richlink");mapAll.put("rm", "audio/x-pn-realaudio");mapAll.put("rmf", "audio/x-rmf");mapAll.put("rmm", "audio/x-pn-realaudio");mapAll.put("rmvb", "audio/x-pn-realaudio");mapAll.put("rnx", "application/vnd.rn-realplayer");mapAll.put("roff", "application/x-troff");mapAll.put("rp", "image/vnd.rn-realpix");mapAll.put("rpm", "audio/x-pn-realaudio-plugin");mapAll.put("rt", "text/vnd.rn-realtext");mapAll.put("rte", "x-lml/x-gps");mapAll.put("rtf", "application/rtf");mapAll.put("rtg", "application/metastream");mapAll.put("rtx", "text/richtext");mapAll.put("rv", "video/vnd.rn-realvideo");mapAll.put("rwc", "application/x-rogerwilco");mapAll.put("s3m", "audio/x-mod");mapAll.put("s3z", "audio/x-mod");mapAll.put("sca", "application/x-supercard");mapAll.put("scd", "application/x-msschedule");mapAll.put("sdf", "application/e-score");mapAll.put("sea", "application/x-stuffit");mapAll.put("sgm", "text/x-sgml");mapAll.put("sgml", "text/x-sgml");mapAll.put("sh", "application/x-sh");mapAll.put("shar", "application/x-shar");mapAll.put("shtml", "magnus-internal/parsed-html");mapAll.put("shw", "application/presentations");mapAll.put("si6", "image/si6");mapAll.put("si7", "image/vnd.stiwap.sis");mapAll.put("si9", "image/vnd.lgtwap.sis");mapAll.put("sis", "application/vnd.symbian.install");mapAll.put("sit", "application/x-stuffit");mapAll.put("skd", "application/x-Koan");mapAll.put("skm", "application/x-Koan");mapAll.put("skp", "application/x-Koan");mapAll.put("skt", "application/x-Koan");mapAll.put("slc", "application/x-salsa");mapAll.put("smd", "audio/x-smd");mapAll.put("smi", "application/smil");mapAll.put("smil", "application/smil");mapAll.put("smp", "application/studiom");mapAll.put("smz", "audio/x-smd");mapAll.put("snd", "audio/basic");mapAll.put("spc", "text/x-speech");mapAll.put("spl", "application/futuresplash");mapAll.put("spr", "application/x-sprite");mapAll.put("sprite", "application/x-sprite");mapAll.put("spt", "application/x-spt");mapAll.put("src", "application/x-wais-source");mapAll.put("stk", "application/hyperstudio");mapAll.put("stm", "audio/x-mod");mapAll.put("sv4cpio", "application/x-sv4cpio");mapAll.put("sv4crc", "application/x-sv4crc");mapAll.put("svf", "image/vnd");mapAll.put("svg", "image/svg-xml");mapAll.put("svh", "image/svh");mapAll.put("svr", "x-world/x-svr");mapAll.put("swf", "application/x-shockwave-flash");mapAll.put("swfl", "application/x-shockwave-flash");mapAll.put("t", "application/x-troff");mapAll.put("tad", "application/octet-stream");mapAll.put("talk", "text/x-speech");mapAll.put("tar", "application/x-tar");mapAll.put("taz", "application/x-tar");mapAll.put("tbp", "application/x-timbuktu");mapAll.put("tbt", "application/x-timbuktu");mapAll.put("tcl", "application/x-tcl");mapAll.put("tex", "application/x-tex");mapAll.put("texi", "application/x-texinfo");mapAll.put("texinfo", "application/x-texinfo");mapAll.put("tgz", "application/x-tar");mapAll.put("thm", "application/vnd.eri.thm");mapAll.put("tif", "image/tiff");mapAll.put("tiff", "image/tiff");mapAll.put("tki", "application/x-tkined");mapAll.put("tkined", "application/x-tkined");mapAll.put("toc", "application/toc");mapAll.put("toy", "image/toy");mapAll.put("tr", "application/x-troff");mapAll.put("trk", "x-lml/x-gps");mapAll.put("trm", "application/x-msterminal");mapAll.put("tsi", "audio/tsplayer");mapAll.put("tsp", "application/dsptype");mapAll.put("tsv", "text/tab-separated-values");mapAll.put("tsv", "text/tab-separated-values");mapAll.put("ttf", "application/octet-stream");mapAll.put("ttz", "application/t-time");mapAll.put("txt", "text/plain");mapAll.put("ult", "audio/x-mod");mapAll.put("ustar", "application/x-ustar");mapAll.put("uu", "application/x-uuencode");mapAll.put("uue", "application/x-uuencode");mapAll.put("vcd", "application/x-cdlink");mapAll.put("vcf", "text/x-vcard");mapAll.put("vdo", "video/vdo");mapAll.put("vib", "audio/vib");mapAll.put("viv", "video/vivo");mapAll.put("vivo", "video/vivo");mapAll.put("vmd", "application/vocaltec-media-desc");mapAll.put("vmf", "application/vocaltec-media-file");mapAll.put("vmi", "application/x-dreamcast-vms-info");mapAll.put("vms", "application/x-dreamcast-vms");mapAll.put("vox", "audio/voxware");mapAll.put("vqe", "audio/x-twinvq-plugin");mapAll.put("vqf", "audio/x-twinvq");mapAll.put("vql", "audio/x-twinvq");mapAll.put("vre", "x-world/x-vream");mapAll.put("vrml", "x-world/x-vrml");mapAll.put("vrt", "x-world/x-vrt");mapAll.put("vrw", "x-world/x-vream");mapAll.put("vts", "workbook/formulaone");mapAll.put("wav", "audio/x-wav");mapAll.put("wax", "audio/x-ms-wax");mapAll.put("wbmp", "image/vnd.wap.wbmp");mapAll.put("web", "application/vnd.xara");mapAll.put("wi", "image/wavelet");mapAll.put("wis", "application/x-InstallShield");mapAll.put("wm", "video/x-ms-wm");mapAll.put("wma", "audio/x-ms-wma");mapAll.put("wmd", "application/x-ms-wmd");mapAll.put("wmf", "application/x-msmetafile");mapAll.put("wml", "text/vnd.wap.wml");mapAll.put("wmlc", "application/vnd.wap.wmlc");mapAll.put("wmls", "text/vnd.wap.wmlscript");mapAll.put("wmlsc", "application/vnd.wap.wmlscriptc");mapAll.put("wmlscript", "text/vnd.wap.wmlscript");mapAll.put("wmv", "audio/x-ms-wmv");mapAll.put("wmx", "video/x-ms-wmx");mapAll.put("wmz", "application/x-ms-wmz");mapAll.put("wpng", "image/x-up-wpng");mapAll.put("wpt", "x-lml/x-gps");mapAll.put("wri", "application/x-mswrite");mapAll.put("wrl", "x-world/x-vrml");mapAll.put("wrz", "x-world/x-vrml");mapAll.put("ws", "text/vnd.wap.wmlscript");mapAll.put("wsc", "application/vnd.wap.wmlscriptc");mapAll.put("wv", "video/wavelet");mapAll.put("wvx", "video/x-ms-wvx");mapAll.put("wxl", "application/x-wxl");mapAll.put("x-gzip", "application/x-gzip");mapAll.put("xar", "application/vnd.xara");mapAll.put("xbm", "image/x-xbitmap");mapAll.put("xdm", "application/x-xdma");mapAll.put("xdma", "application/x-xdma");mapAll.put("xdw", "application/vnd.fujixerox.docuworks");mapAll.put("xht", "application/xhtml+xml");mapAll.put("xhtm", "application/xhtml+xml");mapAll.put("xhtml", "application/xhtml+xml");mapAll.put("xla", "application/vnd.ms-excel");mapAll.put("xlc", "application/vnd.ms-excel");mapAll.put("xll", "application/x-excel");mapAll.put("xlm", "application/vnd.ms-excel");mapAll.put("xls", "application/vnd.ms-excel");mapAll.put("xlt", "application/vnd.ms-excel");mapAll.put("xlw", "application/vnd.ms-excel");mapAll.put("xm", "audio/x-mod");mapAll.put("xml", "text/xml");mapAll.put("xmz", "audio/x-mod");mapAll.put("xpi", "application/x-xpinstall");mapAll.put("xpm", "image/x-xpixmap");mapAll.put("xsit", "text/xml");mapAll.put("xsl", "text/xml");mapAll.put("xul", "text/xul");mapAll.put("xwd", "image/x-xwindowdump");mapAll.put("xyz", "chemical/x-pdb");mapAll.put("yz1", "application/x-yz1");mapAll.put("z", "application/x-compress");mapAll.put("zac", "application/x-zaurus-zac");mapAll.put("zip", "application/zip");}return mapAll;}}
Intent MIME 打开各种类型的文件的更多相关文章
- Android打开各种类型的文件方法总结
很简单,通过调用系统的intent,我们可以打开各种文件,不熟悉的朋友可以了解下action.datatype.uri的相关知识. 通用方法如下: public static Intent openF ...
- Linux-各种姿势(less\vi等)打开各种类型的文件(txt/csv/xlsx等)出现不能打开(全乱码、部分乱码、二进制文件等)的问题
(一)linux各种中文乱码解决办法整理 远程登录服务器用vim在终端下编辑查看文件经常会遇见各种中文乱码问题. 做如下设置可基本解决vim中文乱码问题,首先查看系统对中文的支持locale -a | ...
- 高速在MyEclipse中打开jsp类型的文件
MyEclipse打开jsp时老是要等上好几秒,嗯嗯,这个问题的确非常烦人,事实上都是MyEclipse的"自作聪明"的结果(它默认用Visual Designer来打开的),进行 ...
- Android 各种MIME类型和文件类型的匹配表
MIME:全称Multipurpose Internet Mail Extensions,多功能Internet 邮件扩充服务.它是一种多用途网际邮件扩充协议,在1992年最早应用于电子邮件系统,但后 ...
- 怎样解决chm类型的文件在Windows操作系统中无法打开
又一次安装了Windows 7操作系统,发现chm文件类型Java API文档无法打开了,纠结了半天最终搞定,现总结一下: 1.选中该chm类型的文件,右键鼠标选择并点击"属性(R)&quo ...
- 笔记-Android中打开各种格式的文件(apk、word、excel、ppt、pdf、音视频、图片等)
打开后缀.apk的文件.即启动安装程序. //apkFilePath 文件路径 public void installAPK(String apkFilePath) { // 创建URI Uri ur ...
- Delphi如何处理不同类型的文件
参考:http://www.cnblogs.com/railgunman/articles/1800318.html 程序设计当中,我们时常遇到需要处理文件.目录及驱动器的情况,这里将对如何处理不同类 ...
- emeditor只显示特定类型的文件
emeditor过滤文件类型,右侧资源管理器中只显示特定类型的文件,如只显示java,xml,txt,properties等文件,而不显示doc,jpg,xls等emeditor不能打开的文件. 右击 ...
- 404.17 - 动态内容通过通配符 MIME 映射映射到静态文件处理程序
刚刚重装了系统,原有的ASP.NET工程下面的WebService无法运行,如下: 404.17 - 动态内容通过通配符 MIME 映射映射到静态文件处理程序 微软的提示,是做三项更改,但是我改了之后 ...
随机推荐
- 没有找到iertutil.dll怎么办?快速解决iertutil.dll丢失
iertutil.dll 是存放在 C:\Windows\System32 目录下的一个动态链接库文件,它提供函数给其他程序所调用.iertutil.dll 能够实现接到互联网,纪录输入,监控应用程序 ...
- zookeeper集群的安装
顾名思义zookeeper就是动物园管理员,他是用来管hadoop(大象).Hive(蜜蜂).pig(小猪)的管理员, Apache Hbase和 Apache Solr 的分布式集群都用到了zook ...
- iOS开发中NSURL的基本操作
1.URL URL是对可以从互联网上得到的资源的位置和访问方法的一种简洁的表示,是互联网上标准资源的地址.互联网上的每个文件都有一个唯一的URL,它包含的信息指出文件的位置以及浏览器应该怎么处理它. ...
- 从mysql读取大量数据时的实践
背景 程序启动时,从mysql读取所有的数据,在内存中建立数据结构.mysql表中至少有100w条记录.以后根据时间定期从mysql增量读取数据,刷新内存结构. 表结构为{uid, product, ...
- C++ Primer 5th 第8章 IO库
IO类对象不允许进行拷贝操作. IO类中定义后一些函数和标志,可以用于访问和操作流的状态. 一旦流发生错误,后续IO操作都是失败的. 读写IO对象会改变IO对象的状态. 每个输出流都管理一个缓冲区. ...
- DotNET知识点总结三(笔记整合)
使用接口的注意事项: 接口中的成员不能加访问修饰符 接口中的成员不能有任何实现 实现接口的子类必须实现接口的全部成员 一个类可以同时继承一个类并实现多个接口,如果一个子类同时继承了父类A,并实现了接口 ...
- 转:redis windows下的环境搭建
原文来自于:http://www.2cto.com/os/201204/125971.html 下载地址:https://github.com/dmajkic/redis/downloads 下载 ...
- Matlab 矩阵运算
1.Syms 和sym的区别: syms是定义多个符号是符号变量的意思 sym只能定义一个符号变量,但可以具体到这个符号变量的内容 例:syms f z; %定义下x和y f=sym('a+b+c') ...
- HttpClient3.1 警告: Cookie rejected:
四月 , :: 下午 org.apache.commons.httpclient.HttpMethodBase processCookieHeaders 警告: Cookie rejected: : ...
- Ubuntu 下启动/停止/重启mysql服务
1:sudo start mysql 2:sudo stop mysql 3:sudo restart mysql