android.os.Environment
提供访问环境变量
Environment 静态方法:
方法 : ()
返回 :
解释 : 返回Data的目录
方法 : ()
返回 :
解释 : 返回下载缓冲区目录
方法 : ()
返回 :
解释 : 返回扩展存储区目录(SDCard)
方法 : getExternalStoragePublicDirectory ( type)
返回 :
解释 : 返回一个高端的公用的外部存储器目录来摆放某些类型的文件(来自网上)
方法 : ()
返回 :
解释 : 返回Android的根目录
方法 : ()
返回 :
解释 : 返回外部存储设备的当前状态
() 返回的状态 类型常量 :
常量 :
值 : "bad_removal"
解释 : 在没有正确卸载SDCard之前移除了
常量 : MEDIA_CHECKING
值 : "checking"
解释 : 正在磁盘检查
常量 :
值 : "mounted"
解释 : 已经挂载并且拥有可读可写权限
常量 :
值 : "mounted_ro"
解释 : 已经挂载,但只拥有可读权限
常量 : MEDIA_NOFS
值 : "nofs"
解释 : 对象空白,或者文件系统不支持
常量 :
值 : "removed"
解释 : 已经移除扩展设备
常量 :
值 : "shared"
解释 : 如果SDCard未挂载,并通过USB大容量存储共享
常量 :
值 : "unmountable"
解释 : 不可以挂载任何扩展设备
常量 :
值 : "unmounted"
解释 : 已经卸载
使用时只需先判断SDCard当前的状态然后取得SdCard的目录即可(见源代码)
---------------------------------------------------------------------------------------------------------
-
- ublic void SDCardTest() {
-
- 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!";
- FileOutputStream outputStream = new FileOutputStream(myFile);
- outputStream.write(szOutText.getBytes());
- outputStream.close();
-
- } catch (Exception e) {
-
- }
-
- }
-
- else if (sDStateString
- .endsWith(android.os.Environment.MEDIA_MOUNTED_READ_ONLY)) {
-
-
- File SDFile = android.os.Environment.getExternalStorageDirectory();
-
-
- File myFile = new File(SDFile.getAbsolutePath() + File.separator
- + "MyFile.txt");
-
-
- if (myFile.exists()) {
- try {
-
-
- FileInputStream inputStream = new FileInputStream(myFile);
- byte[] buffer = new byte[1024];
- inputStream.read(buffer);
- inputStream.close();
-
- } catch (Exception e) {
-
- }
- }
- }
-
计算SDCard的容量大小
android.os.StatFs
一个模拟linux的df命令的一个类,获得SD卡和手机内存的使用情况
构造方法:
( path)
公用方法:
方法 : ()
返回 : int
解释 :返回文件系统上剩下的可供程序使用的块
方法 : ()
返回 : int
解释 : 返回文件系统上总共的块
方法 : ()
返回 : int
解释 : 返回文件系统 一个块的大小单位byte
方法 : ()
返回 : int
解释 : 返回文件系统上剩余的所有块 包括预留的一般程序无法访问的
方法 : ( path)
返回 : void
解释 : 执行一个由该对象所引用的文件系统雷斯塔特.(Google翻译)
想计算SDCard大小和使用情况时, 只需要得到SD卡总共拥有的Block数或是剩余没用的Block数,再乘以每个Block的大小就是相应的容量大小了单位byte.(见代码)
- public void SDCardSizeTest() {
-
-
- String sDcString = android.os.Environment.getExternalStorageState();
-
- if (sDcString.equals(android.os.Environment.MEDIA_MOUNTED)) {
-
-
- File pathFile = android.os.Environment
- .getExternalStorageDirectory();
-
- android.os.StatFs statfs = new android.os.StatFs(pathFile.getPath());
-
-
- long nTotalBlocks = statfs.getBlockCount();
-
-
- long nBlocSize = statfs.getBlockSize();
-
-
- long nAvailaBlock = statfs.getAvailableBlocks();
-
-
- long nFreeBlock = statfs.getFreeBlocks();
-
-
- long nSDTotalSize = nTotalBlocks * nBlocSize / 1024 / 1024;
-
-
- long nSDFreeSize = nAvailaBlock * nBlocSize / 1024 / 1024;
- }
-
阅读(838) | 评论(0) | 转发(0) |