Android SD卡基本操作【备忘】

网友投稿 682 2022-05-29

使用时只需先判断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 = 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) {

// 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 = 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) {

// TODO: handle exception

}// end of try

}// end of if(myFile)

}// end of if(MEDIA_MOUNTED_READ_ONLY)

// end of func

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

Android SD卡的基本操作【备忘】

想计算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 = new android.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

Android

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:HBase快速入门系列(5) | Hbase原理
下一篇:基于无线充电信标模拟发射性分布场
相关文章