java文件操作--Thinking in java

文件操作应该是JAVA最基础但是也是最重要的一部分了,下面奉上几个简单的例子

 

  1. package com.bird.thinking;  
  2.   
  3. import java.io.BufferedReader;  
  4. import java.io.FileReader;  
  5.   
  6. /** 
  7.  * @use  缓冲读取文件 
  8.  * @author Bird 
  9.  * 
  10.  */  
  11. public class BufferedInputFile {  
  12.     public static String read(String FileName) throws Exception{  
  13.         BufferedReader in = new BufferedReader(new FileReader(FileName));//设立缓冲区  
  14.         String s = null;  
  15.         StringBuilder sb = new StringBuilder();//尽量使用StringBuilder,迅速  
  16.         while((s = in.readLine()) != null){  
  17.             sb.append(s + "\n");  
  18.         }  
  19.         in.close();  
  20.         return sb.toString();  
  21.     }  
  22.       
  23.     public static void main(String [] args) throws Exception{  
  24.         System.out.println(read("d://book.xml"));  
  25.     }  
  26. }  



  1. package com.bird.thinking;  
  2.   
  3. import java.io.BufferedReader;  
  4. import java.io.PrintWriter;  
  5. import java.io.StringReader;  
  6.   
  7. /** 
  8.  * @use 基本写文件操作 
  9.  * @author Bird 
  10.  * 
  11.  */  
  12. public class BasicFileOutput {  
  13.     public static String file = "d://egg.java";  
  14.     public static void main(String [] args) throws Exception{  
  15.         BufferedReader in = new BufferedReader(new StringReader(BufferedInputFile.read("d://book.xml")));//构建输入对象  
  16.     //  PrintWriter out = new PrintWriter(new BufferedWriter(new FileWriter(file)));//构建输出对象  
  17.         PrintWriter out = new PrintWriter(file);//快捷方式写法,仍然使用缓冲区  
  18.         String s = null;  
  19.         while((s = in.readLine()) != null){  
  20.             out.write(s);  
  21.         }  
  22.         out.close();//一定要关闭刷新缓冲区,否则文件不完整  
  23.         in.close();  
  24.           
  25.           
  26.     }  
  27. }  



  1. package com.bird.thinking;  
  2.   
  3. import java.io.BufferedInputStream;  
  4. import java.io.BufferedOutputStream;  
  5. import java.io.DataInputStream;  
  6. import java.io.DataOutputStream;  
  7. import java.io.FileInputStream;  
  8. import java.io.FileOutputStream;  
  9.   
  10. /** 
  11.  * @use 使用Data写入读取数据,无论读写平台的不同 
  12.  * @author Bird 
  13.  * 
  14.  */  
  15. public class StoringAndRecoveringData {  
  16.     @SuppressWarnings("deprecation")  
  17.     public static void main(String [] args) throws Exception{  
  18.         DataOutputStream out = new DataOutputStream(new BufferedOutputStream(new FileOutputStream("d://egg.xml")));  
  19.         out.writeDouble(3.1415926);//使用二进制写入文件  
  20.         out.writeUTF("Fall in Love");  
  21.         out.writeInt(5);  
  22.         out.close();  
  23.         Thread.sleep(500);//避免磁盘未写入完毕  
  24.           
  25.         DataInputStream in = new DataInputStream(new BufferedInputStream(new FileInputStream("d://egg.xml")));  
  26.         while(in.available() != 0){  
  27.             System.out.println(in.readLine());  
  28.         }  
  29.     }  
  30. }  

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值