Android对sdcard操作


其实就是普通的文件操作,不过还是有些地方需要注意。比如:

  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写文件
   /**
   * 写文件
   */
   private void onWrite() {
   try {
   Log.d(LOG_TAG, "Start Write");
   //1.判断是否存在sdcard
   if (Environment.MEDIA_MOUNTED.equals(Environment.getExternalStorageState())) {
   //目录
   File path = new File(PATH);
   //文件
   File f = new File(PATH + FILENAME);
   if(!path.exists()){
   //2.创建目录,可以在应用启动的时候创建
   path.mkdirs();
   }
   if (!f.exists()) {
   //3.创建文件
   f.createNewFile();
   }
   OutputStreamWriter osw = new OutputStreamWriter(
   new FileOutputStream(f));
   //4.写文件,从EditView获得文本值
   osw.write(editor.getText().toString());
   osw.close();
   }
   } catch (Exception e) {
   Log.d(LOG_TAG, "file create error");
   }
 
   }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值