Android读写文件

本文转自: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是任何文件都可以

 

参考:http://dev.10086.cn/cmdn/wiki/index.php?doc-view-6017.html

 

<script type="text/javascript"></script>

分类: Android
1
0
(请您对文章做出评价)
« 博主前一篇: [转]全国公共英语PETS三级作文经典辅导
» 博主后一篇: [转]23种经典设计模式的java实现_5_职责链模式

<script type="text/javascript"></script><script type="text/javascript"></script>

posted on 2011-09-16 16:31 freeliver54 阅读(6761) 评论(5) 编辑 收藏

评论

#1楼[楼主] 2011-11-01 15:23 freeliver54  

 

Android读写文件正确实行方法介绍
http://www.ehuait.com/skill/android/2011-09-08/1445.html
众所周知Android有一套自己的安全模型, 具体可参见Android开发文档。当应用程序(.apk)在安装时就会分配一个userid,当该应用要去访问其他资源比如文件的时候,就需要userid匹配。默认情况下 ,任何应用创建的文件,数据库, sharedpreferences都应该是私有的(位于/data/data/your_project/files/),其余程序无法访问。除非在创建时指明是MODE_WORLD_READABLE 或者 MODE_WORLD_WRITEABLE,只要这样其余程序才能正确访问。

因为有这种Android读写文件的方法在安全上有所保障,进程打开文件时Android要求检查进程的user id。所以不能直接用java的api来打开,因为java的io函数没有提这个机制 。

无法用java的api直接打开程序私有的数据 ,默认路径为/data/data/your_project/files/

1.FileReader file = new FileReader("Android.txt"); 这里特别强调私有数据!言外之意是如果某个文件或者数据不是程序私有的,既访问它时无须经过Android的权限检查,那么还是可以用java的io api来直接访问的。所谓的非私有数据是只放在sdcard上的文件或者数据,

可以用java的io api来直接打开sdcard上文件。

1.FileReader file = new FileReader("/sdcard/Android.txt"); 如果要打开程序自己私有的文件和数据,那必须使用Activity提供openFileOutput和openFileInput方法。

创建程序私有的文件,由于权限方面的要求,必须使用activity提供的Android读写文件方法

1.FileOutputStream os = this.openFileOutput("Android.txt", MODE_PRIVATE);
2.OutputStreamWriter outWriter = new OutputStreamWriter (os);
读取程序私有的文件,由于权限方面的要求,必须使用activity提供的方法
1.FileInputStream os =this.openFileInput("Android.txt");
2.InputStreamReader inReader = new InputStreamReader(os); Android读写文件的相关操作就为大家介绍到这里。
  

 

#2楼[楼主] 2011-11-03 09:42 freeliver54  

 

http://www.eoeandroid.com/thread-72823-1-1.html
考虑到SD卡可能没有被mount,或者其他各种情况,操作SD卡上的文件总需要各种状态的判断。主要是使用Environment类里的一些接口进行判断:

Java代码:

01.private void writeFileToSD() {

02.String sdStatus = Environment.getExternalStorageState();

03.if(!sdStatus.equals(Environment.MEDIA_MOUNTED)) {

04.Log.d("TestFile", "SD card is not avaiable/writeable right now.");

05.return;

06.}

07.try {

08.String pathName="/sdcard/test/";

09.String fileName="file.txt";

10.File path = new File(pathName);

11.File file = new File(pathName + fileName);

12.if( !path.exists()) {

13.Log.d("TestFile", "Create the path:" + pathName);

14.path.mkdir();

15.}

16.if( !file.exists()) {

17.Log.d("TestFile", "Create the file:" + fileName);

18.file.createNewFile();

19.}

20.FileOutputStream stream = new FileOutputStream(file);

21.String s = "this is a test string writing to file.";

22.byte[] buf = s.getBytes();

23.stream.write(buf);

24.stream.close();

25.} catch(Exception e) {

26.Log.e("TestFile", "Error on writeFilToSD.");

27.e.printStackTrace();

28.}

29.}
复制代码
需要加入权限:

Java代码:
01.< uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE">
复制代码
看文档说,可以使用Context.getExternalFilesDir来取得一个特殊的文件夹,该文件夹对USER不可见,最重要的是:当系统卸载该程序时,会自动删除该目录下的文件。  如果不需要往SD卡上写文件,可以直接用以下简单代码:

Java代码:

01.private void writeFile() {

02.try {

03.FileOutputStream stream = openFileOutput("testfile.txt", Context.MODE_WORLD_WRITEABLE);

04.String s = "this is a test string writing to file.";

05.byte[] buf = s.getBytes();

06.stream.write(buf);

07.stream.close();

08.}

09.catch (FileNotFoundException e) {

10.Log.d("TestFile", "File not found.");

11.}

12.catch (IOException e) {

13.Log.d("TestFile", "File write error.");

14.

15.}

16.

17.}
复制代码
  该文件会被放置于data/data/your_app_package_name/files下。  值得注意的是,我们可以在程序运行期间动态检查SD卡是否可用。大致就是通过注册BroadcastReceiver实现,这个官方文档里有提到:

Java代码:

01.void startWatchingExternalStorage() {

02.mExternalStorageReceiver = new BroadcastReceiver(){

03.

04.@Override

05.public void onReceive(Context context, Intent intent) {

06.Log.i("test", "Storage: " + intent.getData());

07.updateExternalStorageState();

08.}

09.

10.};

11.

12.IntentFilter filter = new IntentFilter();

13.filter.addAction(Intent.ACTION_MEDIA_MOUNTED);

14.filter.addAction(Intent.ACTION_MEDIA_REMOVED);

15.registerReceiver(mExternalStorageReceiver, filter);

16.updateExternalStorageState();

17.

18.}
  

 

#3楼[楼主] 2011-11-03 09:45 freeliver54  

 

android工程根目录下文件的获取[问题点数:60分,结帖人:csuhanyong]
http://topic.csdn.net/u/20101118/17/8a731683-0234-4cac-be75-fb13b868f59f.html

我建了个abc.xml文件放在android工程的根目录下,如果在普通Java工程的话我用 File f = new File(abc.xml)就可以得到;但是在android环境下 会自动把这个路径变为 “/abc.xml”;然后报“ 11-18 08:58:43.572: WARN/System.err(19260): java.io.FileNotFoundException: /systemapps.xml (No such file or directory)”异常,可能是编译路径与以前不一样导致。
那有什么办法可以读取这个xml文件呢?

---------------

获取文件路径的方法

1.绝对路径:/data/data/packagename/files/filename;

2.context:context.getFilesDir()+”/filename”;

缓存目录:/data/data/packagename/Cache或getCacheDir();

如果文件过大就不能存放在手机的文件目录,需要存储到SDCard上。

SDCard目录:/sdcard/或Environment.getExternalStorageDirectory()

使用SDCard目录前,需要判断是否有sdcard:Environment.getExternalStorageState()。操作此目录时需要在主配置文件中注册操作权限。
http://hi.baidu.com/garylijs/blog/item/afaa0dedeef215dbb31cb1d4.html

----------------------

android不支持读取与工程直接子级的文件。解决办法是:
在res文件夹下新建raw文件夹,然后将abc.xml复制到raw文件夹下。

读取代码:

Java code
InputStream input = getResources().openRawResource(R.raw.abc);
BufferedReader read = new BufferedReader(new InputStreamReader(input));
String line = "";
while((line=read.readLine()) != null){
System.out.println(line);
}


-----------------

或者
res文件夹下新建raw文件夹,然后将abc.xml复制到raw文件夹下
Java codeInputStream in = context.openFileInput("abc.xml");
  

 

#4楼[楼主] 2011-11-03 16:15 freeliver54  

 

//Context.getExternalFilesDir
String[] logFiles = this.getFilesDir().list();
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值