javaio流书籍_必读:彻底明⽩Java的IO系统---JAVA之精髓IO
流!
彻底明⽩Java的IO系统
⼀. Input和Output
1. stream代表的是任何有能⼒产出数据的数据源,或是任何有能⼒接收数据的接收源。在Java的IO中,所有的stream(包括Input和Out stream)都包括两种类型:
1.1 以字节为导向的stream
以字节为导向的stream,表⽰以字节为单位从stream中读取或往stream中写⼊信息。以字节为导向的stream包括下⾯⼏种类型:
1) input stream:
1) ByteArrayInputStream:把内存中的⼀个缓冲区作为InputStream使⽤
2) StringBufferInputStream:把⼀个String对象作为InputStream
3) FileInputStream:把⼀个⽂件作为InputStream,实现对⽂件的读取操作
4) PipedInputStream:实现了pipe的概念,主要在线程中使⽤
5) SequenceInputStream:把多个InputStream合并为⼀个InputStream
2) Out stream
1) ByteArrayOutputStream:把信息存⼊内存中的⼀个缓冲区中
2) FileOutputStream:把信息存⼊⽂件中
3) PipedOutputStream:实现了pipe的概念,主要在线程中使⽤
pipedinputstream4) SequenceOutputStream:把多个OutStream合并为⼀个OutStream
1.2 以Unicode字符为导向的stream
以Unicode字符为导向的stream,表⽰以Unicode字符为单位从stream中读取或往stream中写⼊信息。以Unicode字符为导向的stream 包括下⾯⼏种类型:
1) Input Stream
1) CharArrayReader:与ByteArrayInputStream对应
2) StringReader:与StringBufferInputStream对应
3) FileReader:与FileInputStream对应
4) PipedReader:与PipedInputStream对应
2) Out Stream
1) CharArrayWrite:与ByteArrayOutputStream对应
2) StringWrite:⽆与之对应的以字节为导向的stream
3) FileWrite:与FileOutputStream对应
4) PipedWrite:与PipedOutputStream对应
以字符为导向的stream基本上对有与之相对应的以字节为导向的stream。两个对应类实现的功能相同,字是在操作时的导向不同。如CharArrayReader:和ByteArrayInputStream的作⽤都是把内存中的⼀个缓冲区作为InputStream使⽤,所不同的是前者每次从内存中读取⼀个字节的信息,⽽后者每次从
内存中读取⼀个字符。
1.3 两种不现导向的stream之间的转换
InputStreamReader和OutputStreamReader:把⼀个以字节为导向的stream转换成⼀个以字符为导向的stream。
2. stream添加属性
2.1 “为stream添加属性”的作⽤
运⽤上⾯介绍的Java中操作IO的API,我们就可完成我们想完成的任何操作了。但通过FilterInputStream和FilterOutStream的⼦类,我们可以为stream添加属性。下⾯以⼀个例⼦来说明这种功能的作⽤。
如果我们要往⼀个⽂件中写⼊数据,我们可以这样操作:
FileOutStream fs = new FileOutStream(“”);
然后就可以通过产⽣的fs对象调⽤write()函数来往⽂件中写⼊数据了。但是,如果我们想实现“
先把要写⼊⽂件的数据先缓存到内存中,再把缓存中的数据写⼊⽂件中”的功能时,上⾯的API就没有⼀个能满⾜我们的需求了。但是通过FilterInputStream和FilterOutStream的⼦类,为FileOutStream添加我们所需要的功能。
2.2 FilterInputStream的各种类型
2.2.1 ⽤于封装以字节为导向的InputStream
1) DataInputStream:从stream中读取基本类型(int、char等)数据。
2) BufferedInputStream:使⽤缓冲区
3) LineNumberInputStream:会记录input stream内的⾏数,然后可以调⽤getLineNumber()和setLineNumber(int)
4) PushbackInputStream:很少⽤到,⼀般⽤于编译器开发
2.2.2 ⽤于封装以字符为导向的InputStream
1) 没有与DataInputStream对应的类。除⾮在要使⽤readLine()时改⽤BufferedReader,否则使⽤DataInputStream
2) BufferedReader:与BufferedInputStream对应
3) LineNumberReader:与LineNumberInputStream对应
4) PushBackReader:与PushbackInputStream对应
2.3 FilterOutStream的各种类型
2.2.3 ⽤于封装以字节为导向的OutputStream
1) DataIOutStream:往stream中输出基本类型(int、char等)数据。
2) BufferedOutStream:使⽤缓冲区
3) PrintStream:产⽣格式化输出
2.2.4 ⽤于封装以字符为导向的OutputStream
1) BufferedWrite:与对应
2) PrintWrite:与对应
3. RandomAccessFile
1) 可通过RandomAccessFile对象完成对⽂件的读写操作
2) 在产⽣⼀个对象时,可指明要打开的⽂件的性质:r,只读;w,只写;rw可读写
3) 可以直接跳到⽂件中指定的位置
4. I/O应⽤的⼀个例⼦
import java.io.*;
public class TestIO{
public static void main(String[] args)
throws IOException{
//1.以⾏为单位从⼀个⽂件读取数据BufferedReader in =
new BufferedReader(
new FileReader("F://nepalon//TestIO.java")); String s, s2 = new String();
while((s = in.readLine()) != null)
s2 += s + "/n";
in.close();
//1b. 接收键盘的输⼊
BufferedReader stdin =
new BufferedReader(
new InputStreamReader(System.in)); System.out.println("Enter a line:");
System.out.adLine());
//2. 从⼀个String对象中读取数据StringReader in2 = new StringReader(s2); int c;
while((c = ad()) != -1)
System.out.println((char)c);
in2.close();
//3. 从内存取出格式化输⼊
try{
DataInputStream in3 =
new DataInputStream(
new Bytes())); while(true)
System.out.println((adByte());
}
catch(EOFException e){
System.out.println("End of stream");
}
//4. 输出到⽂件
try{
BufferedReader in4 =
new BufferedReader(
new StringReader(s2));
PrintWriter out1 =
new PrintWriter(
new BufferedWriter(
new FileWriter("F://nepalon// TestIO.out")));
int lineCount = 1;
while((s = adLine()) != null)
out1.println(lineCount++ + ":" + s);
out1.close();
in4.close();
}
catch(EOFException ex){
System.out.println("End of stream");
}
//5. 数据的存储和恢复
try{
DataOutputStream out2 =
new DataOutputStream(
new BufferedOutputStream(
new FileOutputStream("F://nepalon// "))); out2.writeDouble(3.1415926);
out2.writeChars("/nThas was pi:writeChars/n"); out2.writeBytes("Thas was pi:writeByte/n");
out2.close();
DataInputStream in5 =
new DataInputStream(
new BufferedInputStream(
new FileInputStream("F://nepalon// "))); BufferedReader in5br =
new BufferedReader(
new InputStreamReader(in5));
System.out.adDouble());
System.out.adLine());
System.out.adLine());
}
catch(EOFException e){
System.out.println("End of stream");
}
//6. 通过RandomAccessFile操作⽂件
RandomAccessFile rf =
new RandomAccessFile("F://nepalon// rtest.dat", "rw");
for(int i=0; i<10; i++)
rf.writeDouble(i*1.414);
rf.close();
rf = new RandomAccessFile("F://nepalon// rtest.dat", "r");
for(int i=0; i<10; i++)
System.out.println("Value " + i + ":" + rf.readDouble());
rf.close();
rf = new RandomAccessFile("F://nepalon// rtest.dat", "rw");
rf.seek(5*8);
rf.writeDouble(47.0001);
rf.close();
rf = new RandomAccessFile("F://nepalon// rtest.dat", "r");
for(int i=0; i<10; i++)
System.out.println("Value " + i + ":" + rf.readDouble());
rf.close();
}
}
关于代码的解释(以区为单位):
1区中,当读取⽂件时,先把⽂件内容读到缓存中,当调⽤in.readLine()时,再从缓存中以字符的⽅式读取数据(以下简称“缓存字节读取⽅式”)。
1b区中,由于想以缓存字节读取⽅式从标准IO(键盘)中读取数据,所以要先把标准IO(System.in)转换成字符导向的stream,再进⾏BufferedReader封装。
2区中,要以字符的形式从⼀个String对象中读取数据,所以要产⽣⼀个StringReader类型的stream。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论