zoukankan      html  css  js  c++  java
  • android 打开文件

    private void openFile(File f) 
        {
          Intent intent = new Intent();
          intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
          intent.setAction(android.content.Intent.ACTION_VIEW);
          
          /* 调用getMIMEType()来取得MimeType */
          String type = getMIMEType(f);
          /* 设置intent的file与MimeType */
          intent.setDataAndType(Uri.fromFile(f),type);
          startActivity(intent); 
        }
    
        /* 判断文件MimeType的method */
        private String getMIMEType(File f) 
        { 
          String type="";
          String fName=f.getName();
          /* 取得扩展名 */
          String end=fName.substring(fName.lastIndexOf(".")
          +1,fName.length()).toLowerCase(); 
          
          /* 依扩展名的类型决定MimeType */
          if(end.equals("m4a")||end.equals("mp3")||end.equals("mid")||
          end.equals("xmf")||end.equals("ogg")||end.equals("wav"))
          {
            type = "audio"; 
          }
          else if(end.equals("3gp")||end.equals("mp4"))
          {
            type = "video";
          }
          else if(end.equals("jpg")||end.equals("gif")||end.equals("png")||
          end.equals("jpeg")||end.equals("bmp"))
          {
            type = "image";
          }
          else if(end.equals("apk")) 
          { 
            /* android.permission.INSTALL_PACKAGES */ 
            type = "application/vnd.android.package-archive"; 
          } 
          else
          {
            type="*";
          }
          /*如果无法直接打开,就跳出软件列表给用户选择 */
          if(end.equals("apk")) 
          { 
          } 
          else 
          { 
            type += "/*";  
          } 
          return type;  
        } 
  • 相关阅读:
    快速掌握MIPI开发攻略,对接百度人工智能计算卡EdgeBoard
    百度大脑UNIT3.0解读之对话式文档问答——上传文档获取对话能力
    果蔬识别轻松帮你区分车厘子与大樱桃
    远场语音识别套件评测
    智能家居手势识别,只需百度AI即可搞定
    python callable函数(43)
    python range函数(42)
    python len函数(41)
    python filter函数(40)
    python 进程Process模块(40)
  • 原文地址:https://www.cnblogs.com/GnagWang/p/2000043.html
Copyright © 2011-2022 走看看