Java设计Io流可谓是煞费苦心,如果你是初学者我敢保证第一次接触Java的IO类,一定会“狂晕!!”,晕,倒不是因为它有多么难学,而是太多,而且及其让人容易迷惑。在编程日子中,尤其是在网络编程中,几乎离不开Java的IO,关于Java的IO流的分类,可以到网上soso,今天跟大家分享一下flush方法。
1. OutputStream类的flush方法
该类实现了Flushable接口,所以重写了flush方法,看看flush()源码,会更加的让你明白:
- publicvoidflush()throwsIOException{
- }
sorry,该实现为空。就是一个空方法,什么也不做。看清楚啊,该方法不是抽象方法,是一个实实在在的方法。除了方法体中一无所有,其它还好!!!汗!!!看JDK的api如何解释!
- flush
- publicvoidflush()
- throwsIOException
- 刷新此输出流并强制写出所有缓冲的输出字节。flush的常规协定是:如果此输出流的实现已经缓冲了以前写入的任何字节,则调用此方法指示应将这些字节立即写入它们预期的目标。
- 如果此流的预期目标是由基础操作系统提供的一个抽象(如一个文件),则刷新此流只能保证将以前写入到流的字节传递给操作系统进行写入,但不保证能将这些字节实际写入到物理设备(如磁盘驱动器)。
- OutputStream的flush方法不执行任何操作。
- 指定者:
- 接口Flushable中的flush
- 抛出:
- IOException-如果发生I/O错误。
开始,我安慰自己,该类是一个抽象类,它的子类肯定重写了该方法。好吧,OutputStream的直接子类有:
- ByteArrayOutputStream
- FileOutputStream
- FilterOutputStream
- ObjectOutputStream
- OutputStream
- PipedOutputStream
注意:这里的子类OutputStream是包org.omg.CORBA.portable的。
对于FileOutputStream、ByteArrayOutputStream、org.omg.CORBA.portable.OutputStream类它们的flush()方法均是从父类继承的flush方法。
FilterOutputStream类重写了flush()方法,但是实质还是调用父类的flush方法。
ObjectOutputStream、PipedOutputStream类重写了flush()方法。
好吧,来两个个小例子,很简单,第一个例子主要是向文本中写入字符串,第二个例子向文本中写入一定字节的数据,如下代码:
- packagemark.zhang;
- importjava.io.BufferedOutputStream;
- importjava.io.DataOutputStream;
- importjava.io.File;
- importjava.io.FileOutputStream;
- publicclassTest{
- publicstaticvoidmain(String[]args)throwsException{
- Filefile=newFile("text.txt");
- if(!file.exists()){
- file.createNewFile();
- }
- FileOutputStreamfos=newFileOutputStream(file);
- BufferedOutputStreambos=newBufferedOutputStream(fos);
- DataOutputStreamdos=newDataOutputStream(fos);
- dos.writeBytes("javaio");
- }
- }
- packagemark.zhang;
- importjava.io.BufferedOutputStream;
- importjava.io.File;
- importjava.io.FileOutputStream;
- publicclassTest{
- publicstaticvoidmain(String[]args)throwsException{
- Filefile=newFile("text.txt");
- if(!file.exists()){
- file.createNewFile();
- }
- FileOutputStreamfos=newFileOutputStream(file);
- BufferedOutputStreambos=newBufferedOutputStream(fos);
- byte[]b=newbyte[1024*8];
- bos.write(b);
- bos.flush();
- }
- }
这两段代执行后,分别会在当前目录下产生7字节的文件(内容为java io)和1KB字节的文件。说到这里,有些人会说,这有什么稀奇,至于吗???呵呵,别急,淡定!!现在修改第二个代码,主要是注释掉调用flush()方法,如下:
- packagemark.zhang;
- importjava.io.BufferedOutputStream;
- importjava.io.File;
- importjava.io.FileOutputStream;
- publicclassTest{
- publicstaticvoidmain(String[]args)throwsException{
- Filefile=newFile("text.txt");
- if(!file.exists()){
- file.createNewFile();
- }
- FileOutputStreamfos=newFileOutputStream(file);
- BufferedOutputStreambos=newBufferedOutputStream(fos);
- byte[]b=newbyte[1024];
- bos.write(b);
-
- }
- }
ok,再次运行代码,额的神啊???文件大小居然是o字节。why????flush()方法有那么神奇,汗??!!!
仔细的你会发现,第一个代码并没有调用flush()方法,居然可以。为什么第二个就不可以呢?还是看源码,有说服力。
DataOutputStream继承FilterOutputStream,实现了DataOutput接口。我们知道FilterOutputStream类重写了flush()方法,但是实质还是调用父类的flush方法。DataOutputStream类的flush()方法效仿其父类FilterOutputStream的做法,如下:
- publicvoidflush()throwsIOException{
- out.flush();
- }
那么,即使你在代码后面加上dos.flush();与不加是一样的效果,因为它们的父类flush()方法均为空,这就是为什么第一个代码的神奇所在。再看看第二个代码的病因在哪里?先看看BufferedOutputStream类的结构:
- publicclassBufferedOutputStreamextendsFilterOutputStream
再看看,它的flush()方法:
- publicsynchronizedvoidflush()throwsIOException{
- flushBuffer();
- out.flush();
- }
- privatevoidflushBuffer()throwsIOException{
- if(count>0){
- out.write(buf,0,count);
- count=0;
- }
- }
不错,该类重写了flush()方法,不像前面几个那样不是继承就是山寨父类的flush()方法。BufferedOutputStream 类是一个使用了缓冲技术的类。这种类一把都会自己实现flush()方法。
那么,有人会问使用这种类的时候,难道必须使用flush()方法吗,当然不是喽??!!不过有个前提,你的字节数据必须不能小于8KB。实例代码,注意没有flush()方法。
- packagemark.zhang;
- importjava.io.BufferedOutputStream;
- importjava.io.File;
- importjava.io.FileOutputStream;
- publicclassTest{
- publicstaticvoidmain(String[]args)throwsException{
- Filefile=newFile("text.txt");
- if(!file.exists()){
- file.createNewFile();
- }
- FileOutputStreamfos=newFileOutputStream(file);
- BufferedOutputStreambos=newBufferedOutputStream(fos);
- byte[]b=newbyte[1024*8];
- bos.write(b);
-
- }
- }
执行代码,会产生8KB的文本文件。当然,怎么可能你每时每刻都知道你的数据一定会不小于8KB呢,所以还是调用flush()方法比较安全。不过,话又说回来,一般用完IO流之后(如果你有一个好的习惯)我们都会去调用close()方法,看源码可以知道该方法也是调用相对应的flush()方法。所以,大多数情况下你不必要担心。这里提醒一下,如果你的文件读写没有达到预期目的,十之八九是因为你没有调用flush()或者close()方法。
另外,字符流类大多数都实现了flush()或者close()方法,只不过,它们调用的是StreamEncoder类的该方法。该类位于sun.nio.cs包下面,其源码在我们jdk中是没有的。源码地址:http://www.docjar.com/html/api/sun/nio/cs/StreamEncoder.java.html。在此,ctrl+v其源码,如下:
- packagesun.nio.cs;
- importjava.io;
- importjava.nio;
- importjava.nio.channels;
- importjava.nio.charset;
- publicclassStreamEncoderextendsWriter
- {
- privatestaticfinalintDEFAULT_BYTE_BUFFER_SIZE=8192;
- privatevolatilebooleanisOpen=true;
- privatevoidensureOpen()throwsIOException{
- if(!isOpen)
- thrownewIOException("Streamclosed");
- }
-
- publicstaticStreamEncoderforOutputStreamWriter(OutputStreamout,
- Objectlock,
- StringcharsetName)
- throwsUnsupportedEncodingException
- {
- Stringcsn=charsetName;
- if(csn==null)
- csn=Charset.defaultCharset().name();
- try{
- if(Charset.isSupported(csn))
- returnnewStreamEncoder(out,lock,Charset.forName(csn));
- }catch(IllegalCharsetNameExceptionx){}
- thrownewUnsupportedEncodingException(csn);
- }
- publicstaticStreamEncoderforOutputStreamWriter(OutputStreamout,
- Objectlock,
- Charsetcs)
- {
- returnnewStreamEncoder(out,lock,cs);
- }
- publicstaticStreamEncoderforOutputStreamWriter(OutputStreamout,
- Objectlock,
- CharsetEncoderenc)
- {
- returnnewStreamEncoder(out,lock,enc);
- }
-
- publicstaticStreamEncoderforEncoder(WritableByteChannelch,
- CharsetEncoderenc,
- intminBufferCap)
- {
- returnnewStreamEncoder(ch,enc,minBufferCap);
- }
-
-
-
-
- publicStringgetEncoding(){
- if(isOpen())
- returnencodingName();
- returnnull;
- }
- publicvoidflushBuffer()throwsIOException{
- synchronized(lock){
- if(isOpen())
- implFlushBuffer();
- else
- thrownewIOException("Streamclosed");
- }
- }
- publicvoidwrite(intc)throwsIOException{
- charcbuf[]=newchar[1];
- cbuf[0]=(char)c;
- write(cbuf,0,1);
- }
- publicvoidwrite(charcbuf[],intoff,intlen)throwsIOException{
- synchronized(lock){
- ensureOpen();
- if((off<0)||(off>cbuf.length)||(len<0)||
- ((off+len)>cbuf.length)||((off+len)<0)){
- thrownewIndexOutOfBoundsException();
- }elseif(len==0){
- return;
- }
- implWrite(cbuf,off,len);
- }
- }
- publicvoidwrite(Stringstr,intoff,intlen)throwsIOException{
-
- if(len<0)
- thrownewIndexOutOfBoundsException();
- charcbuf[]=newchar[len];
- str.getChars(off,off+len,cbuf,0);
- write(cbuf,0,len);
- }
- publicvoidflush()throwsIOException{
- synchronized(lock){
- ensureOpen();
- implFlush();
- }
- }
- publicvoidclose()throwsIOException{
- synchronized(lock){
- if(!isOpen)
- return;
- implClose();
- isOpen=false;
- }
- }
- privatebooleanisOpen(){
- returnisOpen;
- }
-
- privateCharsetcs;
- privateCharsetEncoderencoder;
- privateByteBufferbb;
-
- privatefinalOutputStreamout;
- privateWritableByteChannelch;
-
- privatebooleanhaveLeftoverChar=false;
- privatecharleftoverChar;
- privateCharBufferlcb=null;
- privateStreamEncoder(OutputStreamout,Objectlock,Charsetcs){
- this(out,lock,
- cs.newEncoder()
- .onMalformedInput(CodingErrorAction.REPLACE)
- .onUnmappableCharacter(CodingErrorAction.REPLACE));
- }
- privateStreamEncoder(OutputStreamout,Objectlock,CharsetEncoderenc){
- super(lock);
- this.out=out;
- this.ch=null;
- this.cs=enc.charset();
- this.encoder=enc;
-
- if(false&&outinstanceofFileOutputStream){
- ch=((FileOutputStream)out).getChannel();
- if(ch!=null)
- bb=ByteBuffer.allocateDirect(DEFAULT_BYTE_BUFFER_SIZE);
- }
- if(ch==null){
- bb=ByteBuffer.allocate(DEFAULT_BYTE_BUFFER_SIZE);
- }
- }
- privateStreamEncoder(WritableByteChannelch,CharsetEncoderenc,intmbc){
- this.out=null;
- this.ch=ch;
- this.cs=enc.charset();
- this.encoder=enc;
- this.bb=ByteBuffer.allocate(mbc<0
- ?DEFAULT_BYTE_BUFFER_SIZE
- :mbc);
- }
- privatevoidwriteBytes()throwsIOException{
- bb.flip();
- intlim=bb.limit();
- intpos=bb.position();
- assert(pos<=lim);
- intrem=(pos<=lim?lim-pos:0);
- if(rem>0){
- if(ch!=null){
- if(ch.write(bb)!=rem)
- assertfalse:rem;
- }else{
- out.write(bb.array(),bb.arrayOffset()+pos,rem);
- }
- }
- bb.clear();
- }
- privatevoidflushLeftoverChar(CharBuffercb,booleanendOfInput)
- throwsIOException
- {
- if(!haveLeftoverChar&&!endOfInput)
- return;
- if(lcb==null)
- lcb=CharBuffer.allocate(2);
- else
- lcb.clear();
- if(haveLeftoverChar)
- lcb.put(leftoverChar);
- if((cb!=null)&&cb.hasRemaining())
- lcb.put(cb.get());
- lcb.flip();
- while(lcb.hasRemaining()||endOfInput){
- CoderResultcr=encoder.encode(lcb,bb,endOfInput);
- if(cr.isUnderflow()){
- if(lcb.hasRemaining()){
- leftoverChar=lcb.get();
- if(cb!=null&&cb.hasRemaining())
- flushLeftoverChar(cb,endOfInput);
- return;
- }
- break;
- }
- if(cr.isOverflow()){
- assertbb.position()>0;
- writeBytes();
- continue;
- }
- cr.throwException();
- }
- haveLeftoverChar=false;
- }
- voidimplWrite(charcbuf[],intoff,intlen)
- throwsIOException
- {
- CharBuffercb=CharBuffer.wrap(cbuf,off,len);
- if(haveLeftoverChar)
- flushLeftoverChar(cb,false);
- while(cb.hasRemaining()){
- CoderResultcr=encoder.encode(cb,bb,false);
- if(cr.isUnderflow()){
- assert(cb.remaining()<=1):cb.remaining();
- if(cb.remaining()==1){
- haveLeftoverChar=true;
- leftoverChar=cb.get();
- }
- break;
- }
- if(cr.isOverflow()){
- assertbb.position()>0;
- writeBytes();
- continue;
- }
- cr.throwException();
- }
- }
- voidimplFlushBuffer()throwsIOException{
- if(bb.position()>0)
- writeBytes();
- }
- voidimplFlush()throwsIOException{
- implFlushBuffer();
- if(out!=null)
- out.flush();
- }
- voidimplClose()throwsIOException{
- flushLeftoverChar(null,true);
- try{
- for(;;){
- CoderResultcr=encoder.flush(bb);
- if(cr.isUnderflow())
- break;
- if(cr.isOverflow()){
- assertbb.position()>0;
- writeBytes();
- continue;
- }
- cr.throwException();
- }
- if(bb.position()>0)
- writeBytes();
- if(ch!=null)
- ch.close();
- else
- out.close();
- }catch(IOExceptionx){
- encoder.reset();
- throwx;
- }
- }
- StringencodingName(){
- return((csinstanceofHistoricallyNamedCharset)
- ?((HistoricallyNamedCharset)cs).historicalName()
- :cs.name());
- }
更多源码查看http://www.docjar.com/projects/Open-JDK-6.b17-src-code.html
2. Writer类的flush方法
该类是一个抽象类,声明如下:
- publicabstractclassWriterimplementsAppendable,Closeable,Flushable
Writer类的flush()方法是一个抽象方法,其子类一般都实现了该方法。所以,一般使用字符流之后,调用一下flush()或者close()方法。
- abstractpublicvoidflush()throwsIOException;
细节请看jdk的api,或者Java的源码以及上面的StreamEncoder类源码。
ok,说到这里吧,这里主要借助Java的IO中字节流与字符流的flush()方法,来说明学Java看源码和思考是很重要的。
总之,不管你使用哪种流(字符、字节、具有缓冲的流)技术,不妨调用一下flush()/close()方法,防止数据无法写到输出流中。
资料太好 就收集过来 方便自己查阅 原作者:verycool个人空间: http://my.csdn.net/AndroidBluetooth