当前位置:   article > 正文

android系统外部存储文件写操作的具体实现_安卓13向外存新建文件

安卓13向外存新建文件

1

首先要申请权限

权限的申请

AndroidManifest 里面在application前

添加

 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>

2

找到外部存储卡的路径


File sdDir = null; 
        boolean sdCardExist = Environment.getExternalStorageState()   
        .equals(android.os.Environment.MEDIA_MOUNTED);//判断sd卡是否存在
       if(sdCardExist)   
        {                               
          sdDir = Environment.getExternalStorageDirectory();//获取跟目录
          filePath=sdDir.toString();           
        }   

注意:3。4都要鞋子try语句里面才对

3

在外部存储卡上写自己的文件夹

File file1 = new File(wdir);
if (!file1.exists()) {
file1.mkdirs();
}


4

文件夹产生只有,就好做自己的文件了

 if (!file.exists()) {
   file.createNewFile();

}


下面是我实现的,把asset文件里面的txt文件复制到

外部存储卡的程序文件

  File sdDir = null; 
        boolean sdCardExist = Environment.getExternalStorageState()   
        .equals(android.os.Environment.MEDIA_MOUNTED);//判断sd卡是否存在
       if(sdCardExist)   
        {                               
          sdDir = Environment.getExternalStorageDirectory();//获取跟目录
          filePath=sdDir.toString();           
        }   
       
       String dir=filePath+"/"+"test/"+fileName;
       String wdir=filePath+"/"+"test/";
 file=new File(dir);
 Toast.makeText(getApplicationContext(),dir,
      Toast.LENGTH_SHORT).show();

try{

File file1 = new File(wdir);
if (!file1.exists()) {
file1.mkdirs();
}

   if (!file.exists()) {
   file.createNewFile();
Toast.makeText(getApplicationContext(),filePath+"创建",
        Toast.LENGTH_SHORT).show();

try {
InputStream in = getResources().getAssets().open("laobeijing.txt");
//获取文件的字节数
int lenght = in.available();
//创建byte数组
byte[]  buffer = new byte[lenght];
//将文件中的数据读到byte数组中
in.read(buffer);
result=new  String (buffer); 
} catch (Exception e) {
e.printStackTrace();
}
RandomAccessFile raf = new RandomAccessFile(file, "rw");
           raf.seek(file.length());
           raf.write(result.getBytes());
           raf.close();
           }
}catch (Exception e) {
e.printStackTrace();
}




声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/秋刀鱼在做梦/article/detail/794602
推荐阅读
相关标签
  

闽ICP备14008679号