以字符为导向的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("test.txt");
然后就可以通过产生的fs对象调用write()函数来往test.txt文件中写入数据了。但是,如果我们想实现"先把要写入文件的数据先缓存到内存 中,再把缓存中的数据写入文件中"的功能时,上面的API就没有一个能满足我们的需求了。但是通过FilterInputStream和 FilterOutStream的子类,为FileOutStream添加我们所需要的功能。
2.2FilterInputStream的各种类型
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.3FilterOutStream的各种类型
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)可以直接跳到文件中指定的位置
3.I/O应用的一个例子
java代码
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.println(stdin.readLine());
//2. 从一个String对象中读取数据
StringReader in2 = new StringReader(s2);
int c;
while((c = in2.read()) != -1)
System.out.println((char)c);
in2.close();
//3. 从内存取出格式化输入
try{ DataInputStream in3 =new DataInputStream(new ByteArrayInputStream(s2.getBytes()));
while(true)
System.out.println((char)in3.readByte());
}
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 = in4.readLine()) != null)
out1.println(lineCount++ + ":" + s);
out1.close();
in4.close();
}
catch(EOFException ex){ System.out.println("End of stream");
}
相关报道:
- 新型系统可以让无人机高速穿越树林2015-11-10
- 研究者攻破iOS 9安全机制 获100万美元奖金2015-11-03
- 微软计划为Win7/8设备自动推送Win10升级2015-10-30
- 谷歌公布Android M潜在命名:棉花糖和奶昔上榜2015-08-15
- 如何自Windows 10滚回老版系统:仅30天期限2015-08-07
本类最新
本类最热
科技视界
要闻推荐
今日视点
热点专题
新闻图片
- 新闻排行
- 评测排行