java io

  1. import java.io.*;  
  2. public class TestIO{  
  3.     public static void main(String[] args) throws IOException{  
  4. //1.以行为单位从一个文件读取数据  
  5.     BufferedReader in =new BufferedReader(new FileReader(\"F:  
  6. epalonTestIO.java\"));  
  7.     String s, s2 = new String();  
  8.     while((s = in.readLine()) != null)  
  9.         s2 += s + "\\";  
  10.     in.close();  
  11.   
  12. //1b. 接收键盘的输入  
  13.     BufferedReader stdin =new BufferedReader(new InputStreamReader(System.in));  
  14.     System.out.println(\"Enter a line:\");  
  15.     System.out.println(stdin.readLine());  
  16.   
  17. //2. 从一个String对象中读取数据  
  18.     StringReader in2 = new StringReader(s2);  
  19.     int c;  
  20.     while((c = in2.read()) != -1)  
  21.         System.out.println((char)c);  
  22.     in2.close();  
  23.   
  24. //3. 从内存取出格式化输入  
  25.     try{  
  26.         DataInputStream in3 =new DataInputStream(new ByteArrayInputStream(s2.getBytes()));  
  27.         while(true)  
  28.             System.out.println((char)in3.readByte());  
  29.     }  
  30.     catch(EOFException e){  
  31.         System.out.println(\"End of stream\");  
  32.     }  
  33.   
  34. //4. 输出到文件  
  35.     try{  
  36.         BufferedReader in4 =new BufferedReader(new StringReader(s2)); //把s2当作输入对象  
  37.         PrintWriter out1 =new PrintWriter(new BufferedWriter(new FileWriter(\"F:epalon TestIO.out\")));  
  38.         int lineCount = 1;  
  39.         while((s = in4.readLine()) != null)  
  40.             out1.println(lineCount  + \":\" + s);  
  41.         out1.close();  
  42.         in4.close();  
  43.     }  
  44.     catch(EOFException ex){  
  45.         System.out.println(\"End of stream\");  
  46.     }  
  47.   
  48. //5. 数据的存储和恢复  
  49.     try{  
  50.         DataOutputStream out2 = new DataOutputStream(new BufferedOutputStream(new FileOutputStream(\"F:epalon Data.txt\")));  
  51.         out2.writeDouble(3.1415926);  
  52.         out2.writeChars(" Thas was pi:writeChars ");  
  53.         out2.writeBytes( "Thas was pi:writeByte ");  
  54.         out2.close();  
  55.         DataInputStream in5 = new DataInputStream(new BufferedInputStream(new FileInputStream(\"F:epalon Data.txt\")));  
  56.         BufferedReader in5br = new BufferedReader(new InputStreamReader(in5));  
  57.         System.out.println(in5.readDouble());  
  58.         System.out.println(in5br.readLine());  
  59.         System.out.println(in5br.readLine());  
  60.     }  
  61.     catch(EOFException e){  
  62.         System.out.println(\"End of stream\");  
  63.     }  
  64.   
  65. //6. 通过RandomAccessFile操作文件  
  66.     RandomAccessFile rf = new RandomAccessFile(\"F:epalon rtest.dat\", \"rw\");  
  67.     for(int i=0; i<10; i++)  
  68.         rf.writeDouble(i*1.414);  
  69.     rf.close();  
  70.   
  71.     rf = new RandomAccessFile(\"F:epalon rtest.dat\", \"r\");  
  72.     for(int i=0; i<10; i++)  
  73.         System.out.println(\"Value \" + i + \":\" + rf.readDouble());  
  74.     rf.close();  
  75.   
  76.     rf = new RandomAccessFile(\"F:epalon rtest.dat\", \"rw\");  
  77.     rf.seek(5*8);  
  78.     rf.writeDouble(47.0001);  
  79.     rf.close();  
  80.   
  81.     rf = new RandomAccessFile(\"F:epalon rtest.dat\", \"r\");  
  82.     for(int i=0; i<10; i++)  
  83.         System.out.println(\"Value \" + i + \":\" + rf.readDouble());  
  84.     rf.close();  
  85.     }  
  86. }  

 

关于代码的解释(以区为单位):
1区中,当读取文件时,先把文件内容读到缓存中,当调用in.readLine()时,再从缓存中以字符的方式读取数据(以下简称“缓存字节读取方式”)。
1b区中,由于想以缓存字节读取方式从标准IO(键盘)中读取数据,所以要先把标准IO(System.in)转换成字符导向的stream,再进行BufferedReader封装。
2区中,要以字符的形式从一个String对象中读取数据,所以要产生一个StringReader类型的stream。
4区中,对String对象s2读取数据时,先把对象中的数据存入缓存中,再从缓冲中进行读取;对TestIO.out文件进行操作时,先把格式化后的信息输出到缓存中,再把缓存中的信息输出到文件中。
5区中,对Data.txt文件进行输出时,是先把基本类型的数据输出屋缓存中,再把缓存中的数据输出到文件中;对文件进行读取操作时,先把文件中的数据读取到缓存中,再从缓存中以基本类型的形式进行读取。注意in5.readDouble()这一行。因为写入第一个writeDouble(),所以为了正确显示。也要以基本类型的形式进行读取。
6区是通过RandomAccessFile类对文件进行操作。

posted on 2013-02-18 14:54  要强小伙  阅读(141)  评论(0编辑  收藏  举报