java文件读写大全

系统 2129 0

使用Java操作文本文件的方法详解  
摘要: 最初java是不支持对文本文件的处理的,为了弥补这个缺憾而引入了Reader和Writer两个类  
最初java是不支持对文本文件的处理的,为了弥补这个缺憾而引入了Reader和Writer两个类,这两个类都是抽象类,Writer中 write(char[] ch,int off,int
length),flush()和close()方法为抽象方法,Reader中read(char[] ch,int off,int length)和close()方法是抽象方法。子类应该分别实现他们。
  当我们读写文本文件的时候,采用Reader是非常方便的,比如FileReader,InputStreamReader和BufferedReader。其中最重要的类是InputStreamReader,
它是字节转换为字符的桥梁。你可以在构造器重指定编码的方式,如果不指定的话将采用底层操作系统的默认编码方式,例如GBK等。当使用FileReader读取文件
的时候。
  1. FileReader fr =  new  FileReader( "ming.txt" );  
  2. int  ch =  0 ;  
  3. while ((ch = fr.read())!=- 1  )  
  4. {  
  5. System.out.print(( char )ch);  
  6. }  

其中read()方法返回的是读取得下个字符。当然你也可以使用read(char[] ch,int off,int length)这和处理二进制文件的时候类似,不多说了。如果使用
InputStreamReader来读取文件的时候
while((ch = isr.read())!=-1)
{
System.out.print((char)ch);  
}
这和FileReader并没有什么区别,事实上在FileReader中的方法都是从InputStreamReader中继承过来的。read()方法是比较好费时间的,如果为了提高效率
我们可以使用BufferedReader对Reader进行包装,这样可以提高读取得速度,我们可以一行一行的读取文本,使用readLine()方法。
BufferedReader br = new BufferedReader(new InputStreamReader(new FileInputStream("ming.txt")));
String data = null;
while((data = br.readLine())!=null)
{
System.out.println(data);  
}
当你明白了如何用Reader来读取文本文件的时候那么用Writer写文件同样非常简单。有一点需要注意,当你写文件的时候,为了提高效率,写入的数据会先
放入缓冲区,然后写入文件。因此有时候你需要主动调用flush()方法。与上面对应的写文件的方法为:
·········10········20········30········40········50········60········70········80········90········100·······110·······120·······130·······140·······150
  1. FileWriter fw =  new  FileWriter( "hello.txt" );  
  2. String s =  "hello world" ;  
  3. fw.write(s, 0 ,s.length());  
  4. fw.flush();  
  5. OutputStreamWriter osw =  new  OutputStreamWriter( new  FileOutputStream( "hello2.txt" ));  
  6. osw.write(s, 0 ,s.length());  
  7. osw.flush();  
  8. PrintWriter pw =  new  PrintWriter( new  OutputStreamWriter( new  FileOutputStream( "hello3.txt" )), true );  
  9. pw.println(s);  

不要忘记用完后关闭流!下面是个小例子,帮助新手理解。其实有的时候java的IO系统是需要我们多记记的,不然哪天就生疏了。

·········10········20········30········40········50········60········70········80········90········100·······110·······120·······130·······140·······150
  1. import  java.io.*;  
  2. public   class  TestFile2  
  3. {  
  4. public   static   void  main(String[] args)  throws  IOException  
  5. {  
  6. FileReader fr =  new  FileReader( "ming.txt" );  
  7. char [] buffer =  new   char [ 1024 ];  
  8. int  ch =  0 ;  
  9. while ((ch = fr.read())!=- 1  )  
  10. {  
  11. System.out.print(( char )ch);  
  12. }  
  13.   InputStreamReader isr =  new  InputStreamReader( new  FileInputStream( "ming.txt" ));  
  14. while ((ch = isr.read())!=- 1 )  
  15. {  
  16. System.out.print(( char )ch);  
  17. }  
  18.   BufferedReader br =  new  BufferedReader( new  InputStreamReader( new  FileInputStream( "ming.txt" )));  
  19. String data =  null ;  
  20. while ((data = br.readLine())!= null )  
  21. {  
  22. System.out.println(data);  
  23. }  
  24.   FileWriter fw =  new  FileWriter( "hello.txt" );  
  25. String s =  "hello world" ;  
  26. fw.write(s, 0 ,s.length());  
  27. fw.flush();  
  28.   OutputStreamWriter osw =  new  OutputStreamWriter( new  FileOutputStream( "hello2.txt" ));  
  29. osw.write(s, 0 ,s.length());  
  30. osw.flush();  
  31.   PrintWriter pw =  new  PrintWriter( new  OutputStreamWriter( new  FileOutputStream( "hello3.txt" )), true );  
  32. pw.println(s);  
  33.   fr.close();  
  34. isr.close();  
  35. br.close();  
  36. fw.close();  
  37. osw.close();  
  38. pw.close();  
  39. }  
  40. }  

java中多种方式读文件
一、多种方式读文件内容。
1、按字节读取文件内容
2、按字符读取文件内容
3、按行读取文件内容
4、随机读取文件内容

·········10········20········30········40········50········60········70········80········90········100·······110·······120·······130·······140·······150
  1. import  java.io.BufferedReader;  
  2. import  java.io.File;  
  3. import  java.io.FileInputStream;  
  4. import  java.io.FileReader;  
  5. import  java.io.IOException;  
  6. import  java.io.InputStream;  
  7. import  java.io.InputStreamReader;  
  8. import  java.io.RandomAccessFile;  
  9. import  java.io.Reader;  
  10. public   class  ReadFromFile {  
  11. /**  
  12. * 以字节为单位读取文件,常用于读二进制文件,如图片、声音、影像等文件。  
  13. * @param fileName 文件的名  
  14. */   
  15. public   static   void  readFileByBytes(String fileName){  
  16. File file =  new  File(fileName);  
  17. InputStream in =  null ;  
  18. try  {  
  19. System.out.println( "以字节为单位读取文件内容,一次读一个字节:" );  
  20. // 一次读一个字节   
  21. in =  new  FileInputStream(file);  
  22. int  tempbyte;  
  23. while ((tempbyte=in.read()) != - 1 ){  
  24. System.out.write(tempbyte);  
  25. }  
  26. in.close();  
  27. catch  (IOException e) {  
  28. e.printStackTrace();  
  29. return ;  
  30. }  
  31. try  {  
  32. System.out.println( "以字节为单位读取文件内容,一次读多个字节:" );  
  33. //一次读多个字节   
  34. byte [] tempbytes =  new   byte [ 100 ];  
  35. int  byteread =  0 ;  
  36. in =  new  FileInputStream(fileName);  
  37. ReadFromFile.showAvailableBytes(in);  
  38. //读入多个字节到字节数组中,byteread为一次读入的字节数   
  39. while  ((byteread = in.read(tempbytes)) != - 1 ){  
  40. System.out.write(tempbytes,  0 , byteread);  
  41. }  
  42. catch  (Exception e1) {  
  43. e1.printStackTrace();  
  44. finally  {  
  45. if  (in !=  null ){  
  46. try  {  
  47. in.close();  
  48. catch  (IOException e1) {  
  49. margin: 0px; border-left: #6ce26c 3px sol
分享到:
评论
yiweifeng
  • 浏览: 4653 次
  • 性别: Icon_minigender_1
  • 来自: 秦皇岛
最近访客 更多访客>>
文章分类
最新评论

java文件读写大全


更多文章、技术交流、商务合作、联系博主

微信扫码或搜索:z360901061

微信扫一扫加我为好友

QQ号联系: 360901061

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描下面二维码支持博主2元、5元、10元、20元等您想捐的金额吧,狠狠点击下面给点支持吧,站长非常感激您!手机微信长按不能支付解决办法:请将微信支付二维码保存到相册,切换到微信,然后点击微信右上角扫一扫功能,选择支付二维码完成支付。

【本文对您有帮助就好】

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描上面二维码支持博主2元、5元、10元、自定义金额等您想捐的金额吧,站长会非常 感谢您的哦!!!

发表我的评论
最新评论 总共0条评论