访问External sdcard

本文提供了一种在Android设备上获取外部SD卡路径的方法。通过读取“/proc/mounts”文件来检查常见的外部SD卡挂载点,如“/mnt/external”、“/mnt/extSdCard”等。
摘要由CSDN通过智能技术生成

  1. 如何访问:  http://sigidin.blogspot.com/2011/08/check-external-sd-card-on-android.html
  2. external sdcard产生的背景和相关的问题:http://android.stackexchange.com/questions/33182/why-is-the-sd-card-mounted-to-sdcard-external-sd-instead-of-sdcard-or-m
  3. 访问的代码:
  4.     /**
         * 获取外部Sdcard的路径
         */
        public static File getExternalSdcardPath(){
    
            String[]  externalSdacardPath = {
                    "/mnt/external",
                    "/mnt/extSdCard",
                    "/mnt/sdcard/ext_sd",
                    "/mnt/sdcard/external_sd",
                    "/storage/extSdCard"
            };
    
            try{
                StringBuilder sb = new StringBuilder();
                try {
                    // Open the file
                    FileInputStream fs = new FileInputStream("/proc/mounts");
    
                    DataInputStream in = new DataInputStream(fs);
                    BufferedReader br = new BufferedReader(new InputStreamReader(in));
    
                    String strLine;
    
                    //Read File Line By Line
                    while ((strLine = br.readLine()) != null)   {
                        // Remember each line
                        sb.append(strLine);
                    }
    
                    //Close the stream
                    in.close();
                } catch (Exception e) {
                    //Catch exception if any
                    e.printStackTrace();
                }
    
                for (String extSdcardPath : externalSdacardPath) {
                    if (sb.indexOf(extSdcardPath) > 0) {
                        return new File(extSdcardPath);
                    }
                }
            }catch (Exception e){
                e.printStackTrace();
            }
    
            return null;
        }


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值