吾知网

 找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 6471|回复: 1
打印 上一主题 下一主题

[转]Android读写文件

[复制链接]
跳转到指定楼层
楼主
发表于 2015-11-29 11:46:44 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

本文转自:http://blog.sina.com.cn/s/blog_4d25c9870100qpax.html


一、       resource中的raw文件夹中获取文件并读取数据(资源文件只能读不能写)

String res = "";

try{

InputStream in = getResources().openRawResource(R.raw.bbi);

//在\Test\res\raw\bbi.txt,

   int length = in.available();      

   byte [] buffer = new byte[length];        

   in.read(buffer);         

   //res = EncodingUtils.getString(buffer, "UTF-8");

   //res = EncodingUtils.getString(buffer, "UNICODE");

   res = EncodingUtils.getString(buffer, "BIG5");

   //依bbi.txt的编码类型选择合适的编码,如果不调整会乱码

   in.close();            

   }catch(Exception e){

      e.printStackTrace();         

   }

myTextView.setText(res);//把得到的内容显示在TextView上

二、       asset中获取文件并读取数据(资源文件只能读不能写)

String fileName = "yan.txt"; //文件名字

String res="";

try{

   InputStream in = getResources().getAssets().open(fileName);

   // \Test\assets\yan.txt这里有这样的文件存在

   int length = in.available();         

byte [] buffer = new byte[length];        

in.read(buffer);            

res = EncodingUtils.getString(buffer, "UTF-8");     

}catch(Exception e){

      e.printStackTrace();         

   }

三、       sdcard中去读文件,首先要把文件通过\android-sdk-windows\tools\adb.exe把本地计算机上的文件copysdcard上去,adb.exe push e:/Y.txt /sdcard/, 不可以用adb.exe push e:\Y.txt \sdcard\ 同样: 把仿真器上的文件copy到本地计算机上用: adb pull ./data/data/com.tt/files/Test.txt e:/

String fileName = "/sdcard/Y.txt";

//也可以用String fileName = "mnt/sdcard/Y.txt";

String res="";     

try{

FileInputStream fin = new FileInputStream(fileName);

//FileInputStream fin = openFileInput(fileName);  

//用这个就不行了,必须用FileInputStream

    int length = fin.available();

    byte [] buffer = new byte[length];

    fin.read(buffer);     

    res = EncodingUtils.getString(buffer, "UTF-8");

    fin.close();     

    }catch(Exception e){

           e.printStackTrace();

}

myTextView.setText(res);

四、       写文件, 一般写在\data\data\com.test\files\里面,打开DDMS查看file explorer是可以看到仿真器文件存放目录的结构的

   String fileName = "TEST.txt";

   String message = "FFFFFFF11111FFFFF" ;

writeFileData(fileName, message);

  

   public voidwriteFileData(String fileName,String message){

       try{

        FileOutputStream fout =openFileOutput(fileName, MODE_PRIVATE);

        byte [] bytes = message.getBytes();

        fout.write(bytes);

         fout.close();

        }

       catch(Exception e){

        e.printStackTrace();

       }

   }   

五、       写, data/data/目录(相当AP工作目录)上的文件,openFileOutput

   //写文件在./data/data/com.tt/files/下面

   public voidwriteFileData(String fileName,String message){

       try{

        FileOutputStream fout =openFileOutput(fileName, MODE_PRIVATE);

        byte [] bytes = message.getBytes();

        fout.write(bytes);

         fout.close();

        }

       catch(Exception e){

        e.printStackTrace();

       }

   }

//-------------------------------------------------------

//读文件在./data/data/com.tt/files/下面

   public String readFileData(String fileName){

        String res="";

        try{

         FileInputStream fin = openFileInput(fileName);

         int length = fin.available();

         byte [] buffer = new byte[length];

         fin.read(buffer);     

         res = EncodingUtils.getString(buffer, "UTF-8");

         fin.close();     

        }

        catch(Exception e){

         e.printStackTrace();

        }

        return res;

    }   

六、       写, sdcard目录上的文件,要用FileOutputStream 不能用openFileOutput

    //写在/mnt/sdcard/目录下面的文件

   public voidwriteFileSdcard(String fileName,String message){

       try{

        //FileOutputStream fout = openFileOutput(fileName, MODE_PRIVATE);

       FileOutputStream fout = newFileOutputStream(fileName);

        byte [] bytes = message.getBytes();

        fout.write(bytes);

         fout.close();

        }

       catch(Exception e){

        e.printStackTrace();

       }

   }

  

   //读在/mnt/sdcard/目录下面的文件

   public String readFileSdcard(String fileName){

        String res="";

        try{

         FileInputStream fin = new FileInputStream(fileName);

         int length = fin.available();

         byte [] buffer = new byte[length];

         fin.read(buffer);     

         res = EncodingUtils.getString(buffer, "UTF-8");

         fin.close();     

        }

        catch(Exception e){

         e.printStackTrace();

        }

        return res;

   }

注: openFileOutput是在raw里编译过的,FileOutputStream是任何文件都可以


沙发
 楼主| 发表于 2015-11-29 11:47:14 | 只看该作者

Android如何检测SD卡某个目录是否存在

自己写个音乐播放器,打开播放列表显示歌曲清单首先要扫描SD目录下MP3文件夹里面的mp3文件,那么在扫描之前,首先要检测这个MP3路径是否存在(假设SD卡已存在),因为如果路径不存在是会报空指针错误的,所有如果没有扫描到路径就需要创建。下面是判断的方法。

在SD卡创建文件 需要在AndroidManifest.xml中添加权限 <uses-permission

android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> .

[java] view plaincopyprint? 1. //获得当前外部储存设备的目录

2.

3. String SDCardRoot =

Environment.getExternalStorageDirectory().getAbsolutePath() +

File.separator;

4.

5. /*

6. * 判断SD卡mp3目录是否存在

7. */

8. public void isDirExist(String dir){

9. File file = new File(SDCardRoot + dir + File.separator);

10. if(!file.exists())

11. file.mkdir(); //如果不存在则创建

12.

13. }


然后在做扫描SD卡歌曲操作之前,只需要调用isDirExist(“MP3”)就可以了。


您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|吾知网 ( 粤ICP备13013563号-1 )

GMT+8, 2024-4-27 17:53 , Processed in 1.078125 second(s), 9 queries , Memcache On.

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表