没有SD卡保存文件的方式

String path =Environment.getExternalStorageDirectory().getAbsolutePath()
   + "/" + "a" + "/";

File dir = new File(path);
  // 如果该目录没有存在,则新建目录
  if (dir.list() == null) {
   dir.mkdirs();
  }
     File f = new File(path + filename);
     if (!f.exists()) { 
   f.createNewFile();
  }

你可能感兴趣的:(没有SD卡保存文件的方式)