Java IO: 其他字节流(上)
Posted 耳东陈
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java IO: 其他字节流(上)相关的知识,希望对你有一定的参考价值。
作者: Jakob Jenkov 译者: 李璟([email protected])
本小节会简要概括Java IO中的PushbackInputStream,SequenceInputStream和PrintStream。其中,最常用的是PrintStream,System.out和System.err都是PrintStream类型的变量,请查看Java IO: System.in, System.out, System.err浏览更多关于System.out和System.err的信息。
PushbackInputStream
原文链接
PushbackInputStream用于解析InputStream内的数据。有时候你需要提前知道接下来将要读取到的字节内容,才能判断用何种方式进行数据解析。PushBackInputStream允许你这么做,你可以把读取到的字节重新推回到InputStream中,以便再次通过read()读取。代码如下:
1 |
PushbackInputStream input = new PushbackInputStream( new FileInputStream( "c:\\data\\input.txt" )); |
3 |
int data = input.read(); |
可以通过PushBackInputStream的构造函数设置推回缓冲区的大小,代码如下:
1 |
PushbackInputStream input = new PushbackInputStream( new FileInputStream( "c:\\data\\input.txt" ), 8 ); |
这个例子设置了8个字节的缓冲区,意味着你最多可以重新读取8个字节的数据。
SequenceInputStream
原文链接
SequenceInputStream把一个或者多个InputStream整合起来,形成一个逻辑连贯的输入流。当读取SequenceInputStream时,会先从第一个输入流中读取,完成之后再从第二个输入流读取,以此推类。代码如下:
1 |
InputStream input1 = new FileInputStream( "c:\\data\\file1.txt" ); |
3 |
InputStream input2 = new FileInputStream( "c:\\data\\file2.txt" ); |
5 |
InputStream combined = new SequenceInputStream(input1, input2); |
通过SequenceInputStream,例子中的2个InputStream使用起来就如同只有一个InputStream一样(译者注:SequenceInputStream的read()方法会在读取到当前流末尾时,关闭流,并把当前流指向逻辑链中的下一个流,最后返回新的当前流的read()值)。
PrintStream
原文链接
PrintStream允许你把格式化数据写入到底层OutputStream中。比如,写入格式化成文本的int,long以及其他原始数据类型到输出流中,而非它们的字节数据。代码如下:
01 |
PrintStream output = new PrintStream(outputStream); |
05 |
output.print(( int ) 123 ); |
07 |
output.print(( float ) 123.456 ); |
09 |
output.printf(Locale.UK, "Text + data: %1$" , 123 ); |
PrintStream包含2个强大的函数,分别是format()和printf()(这两个函数几乎做了一样的事情,但是C程序员会更熟悉printf())。
译者注:其中一个printf()函数实现如下:
1 |
public PrintStream printf(String format, Object ... args) { |
3 |
return format(format, args); |
以上是关于Java IO: 其他字节流(上)的主要内容,如果未能解决你的问题,请参考以下文章
JAVA学习之字节流字符流
字节流 字符流 - 12
IO字节流
java 字节流与字符流的区别
IO流-----(字节流)
Java中的IO流操作