<转载>Android 对sdcard操作
转载自:http://www.eoeandroid.com/thread-90240-1-1.html
其实就是普通的文件操作,不过还是有些地方需要注意。比如:
1.加入sdcard操作权限;
2.确认sdcard的存在;
3.不能直接在非sdcard的根目录创建文件,而是需要先创建目录,再创建文件;
在AndroidManifest.xml添加sdcard操作权限
<!-- sdcard权限 -->
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE">
</uses-permission>
变量声明:
private final static String PATH = "/sdcard/digu";
private final static String FILENAME = "/notes.txt";
向sdcard写文件
1 /**
2 * 写文件
3 */
4 private void onWrite() {
5 try {
6 Log.d(LOG_TAG, "Start Write");
7 //1.判断是否存在sdcard
8 if (Environment.MEDIA_MOUNTED.equals(Environment.getExternalStorageState())) {
9 //目录
10 File path = new File(PATH);
11 //文件
12 File f = new File(PATH + FILENAME);
13 if(!path.exists()){
14 //2.创建目录,可以在应用启动的时候创建
15 path.mkdirs();
16 }
17 if (!f.exists()) {
18 //3.创建文件
19 f.createNewFile();
20 }
21 OutputStreamWriter osw = new OutputStreamWriter(
22 new FileOutputStream(f));
23 //4.写文件,从EditView获得文本值
24 osw.write(editor.getText().toString());
25 osw.close();
26 }
27 } catch (Exception e) {
28 Log.d(LOG_TAG, "file create error");
29 }
30
31 }