Android SDCard操作(文件读写,容量计算)

Android SDCard操作(文件读写,容量计算)

android.os.Environment

提供访问环境变量

java.lang.Object

 

 

android.os.Environment

 

   

 

Environment 静态方法:

        方法 : getDataDirectory ()

返回 : File

解释 : 返回Data的目录

方法 : getDownloadCacheDirectory ()

返回 : File

解释 : 返回下载缓冲区目录

方法 : getExternalStorageDirectory ()

返回 : File

解释 : 返回扩展存储区目录(SDCard)



方法 : getExternalStoragePublicDirectory (String type)

返回 : File

解释 : 返回一个高端的公用的外部存储器目录来摆放某些类型的文件(来自网上)

方法 : getRootDirectory ()

返回 : File

解释 : 返回Android的根目录

方法 : getExternalStorageState ()

返回 : String

解释 : 返回外部存储设备的当前状态


getExternalStorageState() 返回的状态String 类型常量 :

常量 : MEDIA_BAD_REMOVAL

    :"bad_removal"

解释 : 在没有正确卸载SDCard之前移除了

常量 : MEDIA_CHECKING

    : "checking"

解释 : 正在磁盘检查

常量 : MEDIA_MOUNTED

    : "mounted"

解释 : 已经挂载并且拥有可读可写权限

常量 : MEDIA_MOUNTED_READ_ONLY

    :"mounted_ro"

解释 : 已经挂载,但只拥有可读权限

常量 : MEDIA_NOFS

    : "nofs"

解释 : 对象空白,或者文件系统不支持

常量 : MEDIA_REMOVED

    : "removed"

解释 : 已经移除扩展设备

常量 : MEDIA_SHARED

    : "shared"

解释 : 如果SDCard未挂载,并通过USB大容量存储共享

常量 : MEDIA_UNMOUNTABLE

    :"unmountable"

解释 : 不可以挂载任何扩展设备

常量 : MEDIA_UNMOUNTED

    :"unmounted"

解释 : 已经卸载


使用时只需先判断SDCard当前的状态然后取得SdCard的目录即可(见源代码)
//SDcard 操作      //SDcard 操作 
ublic void SDCardTest() { 
// 获取扩展SD卡设备状态 
String sDStateString = android.os.Environment.getExternalStorageState(); 
 
// 拥有可读可写权限 
if (sDStateString.equals(android.os.Environment.MEDIA_MOUNTED)) { 
 
    try { 
 
        // 获取扩展存储设备的文件目录 
         File SDFile =android.os.Environment  
                .getExternalStorageDirectory(); 
 
        // 打开文件 
         File myFile = newFile(SDFile.getAbsolutePath() 
                 + File.separator +"MyFile.txt"); 
 
        // 判断是否存在,不存在则创建 
        if (!myFile.exists()) { 
             myFile.createNewFile(); 
         } 
 
        // 写数据 
         String szOutText = "Hello,World!"; 
         FileOutputStream outputStream =new FileOutputStream(myFile); 
        outputStream.write(szOutText.getBytes()); 
         outputStream.close(); 
 
     } catch (Exception e) { 
        // TODO: handle exception 
     }// end of try 
 
}// end of if(MEDIA_MOUNTED) 
// 拥有只读权限 
else if (sDStateString 
        .endsWith(android.os.Environment.MEDIA_MOUNTED_READ_ONLY)) { 
 
    // 获取扩展存储设备的文件目录 
     File SDFile =android.os.Environment.getExternalStorageDirectory(); 
 
    // 创建一个文件 
     File myFile = newFile(SDFile.getAbsolutePath() + File.separator 
             +"MyFile.txt"); 
 
    // 判断文件是否存在 
    if (myFile.exists()) { 
        try { 
 
            // 读数据 
             FileInputStream inputStream= new FileInputStream(myFile); 
            byte[] buffer = newbyte[1024]; 
            inputStream.read(buffer); 
             inputStream.close(); 
 
         } catch (Exception e) { 
            // TODO: handleexception 
         }// end of try 
     }// end of if(myFile) 
}// end of if(MEDIA_MOUNTED_READ_ONLY) 
// end of func 

    //SDcard 操作  public void SDCardTest(){   // 获取扩展SD卡设备状态   String sDStateString =android.os.Environment.getExternalStorageState();    // 拥有可读可写权限   if(sDStateString.equals(android.os.Environment.MEDIA_MOUNTED)) {     try {     // 获取扩展存储设备的文件目录     File SDFile = android.os.Environment       .getExternalStorageDirectory();      // 打开文件     File myFile = newFile(SDFile.getAbsolutePath()       +File.separator + "MyFile.txt");     // 判断是否存在,不存在则创建     if (!myFile.exists()){      myFile.createNewFile();     }     // 写数据     String szOutText = "Hello,World!";     FileOutputStreamoutputStream = new FileOutputStream(myFile);    outputStream.write(szOutText.getBytes());     outputStream.close();     } catch (Exception e) {     // TODO: handle exception    }// end of try    }// end of if(MEDIA_MOUNTED)   // 拥有只读权限   else if (sDStateString    .endsWith(android.os.Environment.MEDIA_MOUNTED_READ_ONLY)) {     // 获取扩展存储设备的文件目录    File SDFile =android.os.Environment.getExternalStorageDirectory();     // 创建一个文件    File myFile = newFile(SDFile.getAbsolutePath() + File.separator     +"MyFile.txt");     // 判断文件是否存在    if (myFile.exists()){     try {       // 读数据      FileInputStream inputStream = newFileInputStream(myFile);      byte[]buffer = new byte[1024];     inputStream.read(buffer);     inputStream.close();      } catch(Exception e) {      // TODO: handleexception     }// end of try    }// end of if(myFile)   }// end of if(MEDIA_MOUNTED_READ_ONLY)  }// end of func


计算SDCard的容量大小
ublic void SDCardTest() { 
// 获取扩展SD卡设备状态 
String sDStateString = android.os.Environment.getExternalStorageState(); 
 
// 拥有可读可写权限 
if (sDStateString.equals(android.os.Environment.MEDIA_MOUNTED)) { 
 
    try { 
 
        // 获取扩展存储设备的文件目录 
         File SDFile =android.os.Environment 
                .getExternalStorageDirectory();  
 
        // 打开文件 
         File myFile = newFile(SDFile.getAbsolutePath() 
                 + File.separator +"MyFile.txt"); 
 
        // 判断是否存在,不存在则创建 
        if (!myFile.exists()) { 
             myFile.createNewFile(); 
         } 
 
        // 写数据 
         String szOutText = "Hello,World!"; 
         FileOutputStream outputStream =new FileOutputStream(myFile); 
        outputStream.write(szOutText.getBytes()); 
         outputStream.close(); 
 
     } catch (Exception e) { 
       // TODO: handle exception 
     }// end of try 
 
}// end of if(MEDIA_MOUNTED) 
// 拥有只读权限 
else if (sDStateString 
        .endsWith(android.os.Environment.MEDIA_MOUNTED_READ_ONLY)) { 
 
    // 获取扩展存储设备的文件目录 
     File SDFile = android.os.Environment.getExternalStorageDirectory(); 
 
    // 创建一个文件 
     File myFile = newFile(SDFile.getAbsolutePath() + File.separator 
             +"MyFile.txt"); 
 
    // 判断文件是否存在 
    if (myFile.exists()) { 
        try { 
 
            // 读数据  
             FileInputStream inputStream= new FileInputStream(myFile); 
            byte[] buffer = newbyte[1024]; 
            inputStream.read(buffer); 
             inputStream.close(); 
 
         } catch (Exception e) { 
            // TODO: handleexception 
         }// end of try 
     }// end of if(myFile) 
}// end of if(MEDIA_MOUNTED_READ_ONLY) 
// end of func 

    //SDcard 操作  public void SDCardTest(){   // 获取扩展SD卡设备状态   String sDStateString =android.os.Environment.getExternalStorageState();    // 拥有可读可写权限   if(sDStateString.equals(android.os.Environment.MEDIA_MOUNTED)) {     try {     // 获取扩展存储设备的文件目录     File SDFile = android.os.Environment       .getExternalStorageDirectory();      // 打开文件     File myFile = new File(SDFile.getAbsolutePath()       + File.separator +"MyFile.txt");      // 判断是否存在,不存在则创建     if (!myFile.exists()) {      myFile.createNewFile();     }     // 写数据     String szOutText = "Hello,World!";     FileOutputStreamoutputStream = new FileOutputStream(myFile);    outputStream.write(szOutText.getBytes());     outputStream.close();     } catch (Exception e) {     // TODO: handle exception    }// end of try    }// end of if(MEDIA_MOUNTED)   // 拥有只读权限   else if (sDStateString     .endsWith(android.os.Environment.MEDIA_MOUNTED_READ_ONLY)){     // 获取扩展存储设备的文件目录    File SDFile =android.os.Environment.getExternalStorageDirectory();     // 创建一个文件    File myFile = newFile(SDFile.getAbsolutePath() + File.separator      + "MyFile.txt");     // 判断文件是否存在    if (myFile.exists()) {     try {      // 读数据      FileInputStream inputStream = newFileInputStream(myFile);      byte[]buffer = new byte[1024];     inputStream.read(buffer);     inputStream.close();      } catch(Exception e) {      // TODO: handleexception     }// end of try    }// end of if(myFile)   }// end of if(MEDIA_MOUNTED_READ_ONLY)  }// end of func


计算SDCard的容量大小
android.os.StatFs

一个模拟linuxdf命令的一个类,获得SD卡和手机内存的使用情况

java.lang.Object

 

 

android.os.StatFs

   

构造方法:

StatFs (String path)

公用方法:

方法 : getAvailableBlocks ()

返回 : int

解释 :返回文件系统上剩下的可供程序使用的块

方法 : getBlockCount ()

返回 : int

解释 : 返回文件系统上总共的块

方法 : getBlockSize ()

返回 : int

解释 : 返回文件系统一个块的大小单位byte

方法 : getFreeBlocks ()

返回 : int

解释 : 返回文件系统上剩余的所有块包括预留的一般程序无法访问的

方法 : restat (String path)

返回 : void

解释 : 执行一个由该对象所引用的文件系统雷斯塔特.(Google翻译)



想计算SDCard大小和使用情况时, 只需要得到SD卡总共拥有的Block数或是剩余没用的Block,再乘以每个Block的大小就是相应的容量大小了单位byte.(见代码)


    public void SDCardSizeTest() { 
 
// 取得SDCard当前的状态 
String sDcString = android.os.Environment.getExternalStorageState(); 
 
if (sDcString.equals(android.os.Environment.MEDIA_MOUNTED)) { 
 
    // 取得sdcard文件路径 
     File pathFile =android.os.Environment 
            .getExternalStorageDirectory(); 
 
     android.os.StatFs statfs = newandroid.os.StatFs(pathFile.getPath()); 
 
    // 获取SDCard上BLOCK总数 
    long nTotalBlocks =statfs.getBlockCount(); 
 
    // 获取SDCard上每个block的SIZE 
    long nBlocSize =statfs.getBlockSize(); 
 
    // 获取可供程序使用的Block的数量 
    long nAvailaBlock =statfs.getAvailableBlocks(); 
 
    // 获取剩下的所有Block的数量(包括预留的一般程序无法使用的块) 
    long nFreeBlock =statfs.getFreeBlocks(); 
 
    // 计算SDCard 总容量大小MB 
    long nSDTotalSize = nTotalBlocks *nBlocSize / 1024 / 1024; 
 
    // 计算 SDCard 剩余大小MB 
    long nSDFreeSize = nAvailaBlock *nBlocSize / 1024 / 1024; 
}// end of if 
// end of func


  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值