Android SD卡的基本操作【备忘】
【摘要】
sdcard读写 默认android系统对每个app都开放读写功能。
默认路径为/mnt/sdcard/ 或者/sdcard/
写外部存储即sdcard的权限
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE">...
使用时只需先判断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翻译)
想计算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
文章来源: panda1234lee.blog.csdn.net,作者:panda1234lee,版权归原作者所有,如需转载,请联系作者。
原文链接:panda1234lee.blog.csdn.net/article/details/8687176
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)