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

 

 

一, RandomAccessFile写文件函数

 

   String str = "nigelyan";

   String file = "./sdcard/mm.txt";

    writefile(file,str);

    public void writefile(String filename , String message)

    {

        RandomAccessFile rf;

      try {

          rf = new RandomAccessFile(filename, "rw");

          try {

             rf.writeChar(0xFEFF);

             rf.writeChars(message);//这个要根据不同的情况改变,

             rf.close();

          } catch (IOException e) {

             // TODO Auto-generated catch block

             e.printStackTrace();

          }

      } catch (FileNotFoundException e) {

          // TODO Auto-generated catch block

          e.printStackTrace();

      } 

    }

 

二,RandomAccessFile读文件函数

 

    //RandomAccessFile读文件

    public String readfile(String filename)

    {

       String str = null;

      byte[] strbuf = null;

       long  lenfile = 0 ;

        RandomAccessFile rf;

      try {

          rf = newRandomAccessFile(filename, "rw");

          try {

             lenfile = rf.length(); //得到文件长度

             int size = (int) lenfile;//强制转换类型

             strbuf = new byte[size]; //申请空间

             rf.read(strbuf, 0, size);//读文件到strbuf

             str = new String(strbuf, DEFAULT_CHARSET);

             rf.close();

          } catch (IOException e) {

             // TODO Auto-generated catch block

             e.printStackTrace();

          }

      } catch(FileNotFoundException e) {

          // TODO Auto-generated catch block

          e.printStackTrace();

      } 

      return str;

    }

 

三, 可能碰到的问题

 

(一)写出来的文件,有0X00这样的字,给人的感觉是空了一个格再写下一个字的

  在写文件时候要写一UNICODE个头rf.writeChar(0xFEFF);

  读的时候也会读到这个头的,可以跳过去的

rf.read(strbuf, 2, size-2); //size是文件的长度,不读头,就要减2,要么就有异常发生。

也可以加判断,如果有头在的就rf.read(strbuf, 2, size-2);没有头的就这样rf.read(strbuf, 0, size);

(二)参考JDK_API_1_6_zh_CN.CHMRandomAccessFile对读写文件的一些函数

 

### Adobe AIR Android 文件读写教程 #### 创建项目并设置权限 为了能够在Android平台上执行文件读取和写入操作,首先需要确保应用程序具有相应的权限。在`application.xml`文件中添加必要的权限声明: ```xml <android> <manifestAdditions><![CDATA[ <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> ]]></manifestAdditions> </android> ``` 此部分配置允许应用访问设备存储空间[^2]。 #### 使用File类进行基本操作 Adobe AIR提供了强大的API支持跨平台文件处理功能。下面是一个简单的例子展示如何创建、读取以及向文件追加数据: ##### 写入文件 要保存字符串到指定路径下的文本文件中可以这样做: ```actionscript var file:File = File.applicationStorageDirectory.resolvePath("example.txt"); var stream:FileStream = new FileStream(); stream.open(file, FileMode.WRITE); stream.writeUTFBytes("Hello World!"); stream.close(); ``` 这段代码会在应用程序私有目录下新建名为`example.txt`的文件,并写入一段文字[^1]. ##### 追加内容至现有文件 如果希望不覆盖而是增加新信息,则应采用不同的模式打开流对象: ```actionscript var appendStream:FileStream = new FileStream(); appendStream.open(file, FileMode.APPEND); appendStream.writeUTFBytes("\nThis is an appended line."); appendStream.close(); ``` 上述脚本将在之前创建的文件末尾附加一行新的文本. ##### 读取文件内容 当需要获取已存放在文件内的资料时可利用如下方法: ```actionscript var readStream:FileStream = new FileStream(); readStream.open(file, FileMode.READ); trace(readStream.readUTFBytes(readStream.bytesAvailable)); readStream.close(); ``` 这里展示了怎样把整个文件的内容一次性全部加载进来显示出来. #### 注意事项 - 应始终记得关闭任何打开过的文件流以防资源泄露。 - 对于大尺寸文件建议分块读/写而不是一次性完成整个过程以免占用过多内存。 - 考虑异常情况的发生,在实际部署前做好充分测试工作。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值