Android中调用系统所装的软件打开文件(转)

Android中调用系统所装的软件打开文件(转)

在应用中如何调用系统所装的软件打开一个文件,这是我们经常碰到的问题,下面是我所用到的一种方法,和大家一起分享一下!

这个是打开文件的一个方法:

Java代码

  1. /**
  2. * 打开文件
  3. * @param file
  4. */
  5. private void openFile(File file){
  6. Intent intent = new Intent();
  7. intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
  8. //设置intent的Action属性
  9. intent.setAction(Intent.ACTION_VIEW);
  10. //获取文件file的MIME类型
  11. String type = getMIMEType(file);
  12. //设置intent的data和Type属性。
  13. intent.setDataAndType(/*uri*/Uri.fromFile(file), type);
  14. //跳转
  15. startActivity(intent);
  16. }
  17. /**
  18. * 根据文件后缀名获得对应的MIME类型。
  19. * @param file
  20. */
  21. private String getMIMEType(File file) {
  22. String type="*/*";
  23. String fName = file.getName();
  24. //获取后缀名前的分隔符"."在fName中的位置。
  25. int dotIndex = fName.lastIndexOf(".");
  26. if(dotIndex < 0){
  27. return type;
  28. }
  29. /* 获取文件的后缀名 */
  30. String end=fName.substring(dotIndex,fName.length()).toLowerCase();
  31. if(end=="")return type;
  32. //在MIME和文件类型的匹配表中找到对应的MIME类型。
  33. for(int i=0;i<MIME_MapTable.length;i++){ //MIME_MapTable??在这里你一定有疑问,这个MIME_MapTable是什么?
  34. if(end.equals(MIME_MapTable[i][0]))
  35. type = MIME_MapTable[i][1];
  36. }
  37. return type;
  38. }

MIME_MapTable是所有文件的后缀名所对应的MIME类型的一个String数组:

Java代码

  1. private final String[][] MIME_MapTable={
  2. //{后缀名, MIME类型}
  3. {".3gp",    "video/3gpp"},
  4. {".apk",    "application/vnd.android.package-archive"},
  5. {".asf",    "video/x-ms-asf"},
  6. {".avi",    "video/x-msvideo"},
  7. {".bin",    "application/octet-stream"},
  8. {".bmp",    "image/bmp"},
  9. {".c",  "text/plain"},
  10. {".class",  "application/octet-stream"},
  11. {".conf",   "text/plain"},
  12. {".cpp",    "text/plain"},
  13. {".doc",    "application/msword"},
  14. {".docx",   "application/vnd.openxmlformats-officedocument.wordprocessingml.document"},
  15. {".xls",    "application/vnd.ms-excel"},
  16. {".xlsx",   "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"},
  17. {".exe",    "application/octet-stream"},
  18. {".gif",    "image/gif"},
  19. {".gtar",   "application/x-gtar"},
  20. {".gz", "application/x-gzip"},
  21. {".h",  "text/plain"},
  22. {".htm",    "text/html"},
  23. {".html",   "text/html"},
  24. {".jar",    "application/java-archive"},
  25. {".java",   "text/plain"},
  26. {".jpeg",   "image/jpeg"},
  27. {".jpg",    "image/jpeg"},
  28. {".js", "application/x-javascript"},
  29. {".log",    "text/plain"},
  30. {".m3u",    "audio/x-mpegurl"},
  31. {".m4a",    "audio/mp4a-latm"},
  32. {".m4b",    "audio/mp4a-latm"},
  33. {".m4p",    "audio/mp4a-latm"},
  34. {".m4u",    "video/vnd.mpegurl"},
  35. {".m4v",    "video/x-m4v"},
  36. {".mov",    "video/quicktime"},
  37. {".mp2",    "audio/x-mpeg"},
  38. {".mp3",    "audio/x-mpeg"},
  39. {".mp4",    "video/mp4"},
  40. {".mpc",    "application/vnd.mpohun.certificate"},
  41. {".mpe",    "video/mpeg"},
  42. {".mpeg",   "video/mpeg"},
  43. {".mpg",    "video/mpeg"},
  44. {".mpg4",   "video/mp4"},
  45. {".mpga",   "audio/mpeg"},
  46. {".msg",    "application/vnd.ms-outlook"},
  47. {".ogg",    "audio/ogg"},
  48. {".pdf",    "application/pdf"},
  49. {".png",    "image/png"},
  50. {".pps",    "application/vnd.ms-powerpoint"},
  51. {".ppt",    "application/vnd.ms-powerpoint"},
  52. {".pptx",   "application/vnd.openxmlformats-officedocument.presentationml.presentation"},
  53. {".prop",   "text/plain"},
  54. {".rc", "text/plain"},
  55. {".rmvb",   "audio/x-pn-realaudio"},
  56. {".rtf",    "application/rtf"},
  57. {".sh", "text/plain"},
  58. {".tar",    "application/x-tar"},
  59. {".tgz",    "application/x-compressed"},
  60. {".txt",    "text/plain"},
  61. {".wav",    "audio/x-wav"},
  62. {".wma",    "audio/x-ms-wma"},
  63. {".wmv",    "audio/x-ms-wmv"},
  64. {".wps",    "application/vnd.ms-works"},
  65. {".xml",    "text/plain"},
  66. {".z",  "application/x-compress"},
  67. {".zip",    "application/x-zip-compressed"},
  68. {"",        "*/*"}
  69. };

这个MIME类型可能不够完整,你有要补充的吗?

原文:http://tonysun3544.iteye.com/blog/1265884

时间: 2024-10-10 10:20:39

Android中调用系统所装的软件打开文件(转)的相关文章

android中调用系统的发送短信、发送邮件、打电话功能

1 调用发送短信功能: Uri smsToUri = Uri.parse("smsto:"); Intent sendIntent = new Intent(Intent.ACTION_VIEW, smsToUri); sendIntent.putExtra("address", "123456"); //电话号码,这行去掉的话,默认就没有电话 sendIntent.putExtra("sms_body","短信内容

Android中调用系统已安装的播放器来播放网络流媒体视频

实现思路比较简单几行代码就可以搞定,在界面放一个Button或者带有播放图标的imageview,点击事件中调用本地播放器来播放. Uri uri = Uri.parse("http://218.200.69.66:8302/upload/Media/20150327/43bfda1b-7280-469c-a83b-82fa311c79d7.m4v"); // 调用系统自带的播放器来播放流媒体视频 Intent intent = new Intent(Intent.ACTION_VIE

关于android中调用系统拍照,返回图片是旋转90度..

由于项目的需要,没有自定义拍照功能,仅仅调用了系统的拍照程序..但是出现了一个问题,就是拍照完成显示图片居然是被旋转的图片.... 解决办法: /** * 获取图片的旋转角度,有些系统把拍照的图片旋转了,有的没有旋转 */ int degree = readPictureDegree(f.getAbsolutePath()); BitmapFactory.Options opts=new BitmapFactory.Options();//获取缩略图显示到屏幕上 opts.inSampleSiz

调用Android系统安装的软件打开文件,程序停止运行

问题描述 如题,调用Android系统安装的软件打开文件时,当系统有安装相关软件时程序正常运行,但是当系统找不到该文件类型匹配的软件时就停止运行了.现在我想让它找不到相应软件时能提示用户,而不是直接停止运行,代码应该怎么写,求大神赐教!!! 解决方案1 或者捕捉startActivity的异常,但是这种方式比较粗暴. 解决方案2 try {     //把你7楼的代码放在这里 } catch (Exception e) {     //提示用户没有找到 } 解决方案3 何必呢,直接使用 // 获

【转】Android 学习笔记——利用JNI技术在Android中调用、调试C++代码

原文网址:http://cherishlc.iteye.com/blog/1756762 在Android中调用C++其实就是在Java中调用C++代码,只是在windows下编译生成DLL,在Android中会生成Linux系统下的.so文件(好吧,其实我基本没用过Linux). 没写过JNI的可以看看我之前的博客(Windows下利用Visual Studio开发的过程):http://cherishlc.iteye.com/admin/blogs/1328136 以及自动生成工具swig的

android 中调用接口发送短信

android中可以通过两种方式发送短信 第一:调用系统短信接口直接发送短信:主要代码如下: Java代码   //直接调用短信接口发短信 SmsManager smsManager = SmsManager.getDefault(); List<String> divideContents = smsManager.divideMessage(content); for (String text : divideContents) { smsManager.sendTextMessage(&

Android 调用系统分享文字、图片、文件,可直达微信、朋友圈、QQ、QQ空间、微博

原文:Android 调用系统分享文字.图片.文件,可直达微信.朋友圈.QQ.QQ空间.微博 兼容SDK 18以上的系统,直接调用系统分享功能,分享文本.图片.文件到第三方APP,如:微信.QQ.微博等 因为偷懒,可直达微信.朋友圈.QQ.QQ空间.微博的分享仅写了图片分享的,其他的文本.文件分享不常用到,就不写了. 具体图片分享区分单张图片分享和多张图片分享,详情请看代码: import android.content.ComponentName; import android.content

在Android中调用C#写的WebService(附源代码)

由于项目中要使用Android调用C#写的WebService,于是便有了这篇文章.在学习的过程中,发现在C#中直接调用WebService方便得多,直接添加一个引用,便可以直接使用将WebService当做一个对象使用,利用Vs2010中的代码提示功能就能爽歪歪地把想要的东西全部点出来.在Android调用,麻烦了一点,但是也还好.主要是我们需要自己在代码中确定要调用WebService的方法名是什么,要传给WebService什么参数以及对应的参数名,另外,一些额外的信息比如soap的版本号

Cocos2d-x 3.x 在wp8中调用系统字体的解决方案

问题和解决方法: 在使用cocos2d-x设计游戏的时候,字体是个很重要的部分.如果游戏中对字体没有太多的要求,就可以使用平台系统自带的字体,可以节省游戏的尺寸,以及减小游戏运行时所占用的内存.当加载系统字体的时候,wp8平台下就出现了问题. wp8平台下的系统自带的中文字体有一个叫等线字体的字体库,DengXian.ttf.我们想在代码中使用这个系统字体,比如创建一个标签: auto label=Label::create("这是简体中文","DengXian",