zoukankan      html  css  js  c++  java
  • java.io.writer API 以及 源码解读

    声明 我看的是java7的API文档。

    如下图所示,java.io.writer 继承了java.lang.Object,实现的接口有Closeable, Flushable, Appendable, AutoCloseable。

    所有直接继承它的子类有BufferedWriter CharArrayWriter FilterWriter OutputStreamWriter PipedWriter PrintWriter StringWriter。

    Writer是用来操作字符流的抽象类。所有继承它的子类必须要重写的方法有write(char[], int, int), flush(), and close().

    下面是java.io.Writer的源码。

    package java.io;
    
    public abstract class Writer implements Appendable,Closebale,Flushable{
        
        private char[] writeBuffer;
        private static final int WRITE_BUFFER_SIZE = 1024;
        projected Object lock;
        
        protected Writer(){
            this.lock = this;
        }
        
        protected Writer(Object lock){
            if(lock == null){
                throw new NullPointerException();
            } 
            this.lock = lock;
        }
        
        public void write(int c) throw IOException{
            syschronized (lock){
                if (writeBuffer == null){
                    writeBuffer = new char[WRITE_BUFFER_SIZE];
                }
                writeBuffer[0] = (char) c;
                write(writeBuffer,0,1);
            }
        }
        
        public void write(char cbuf[]) throw IOException{
            write(cbuf, 0, cbuf.length);
        }
        
        abstract public void write(char buf[], int off, int len) throw IOException;
        
        public void write(String str) throw IOException{
            write(str, 0, str.length());
        } 
        
        public void write(String str, int off, int len) throw IOException{
            syschronized(lock){
                char cbuf[];
                if(len <= WRITE_BUFFER_SIZE){
                    if(writeBuffer == null){
                        writeBuffer = new char[WRITE_BUFFER_SIZE];
                    }
                    cbuf = writeBuffer;
                }else{
                    cbuf = new char[len];
                }
                str.getChars(off, (off + len), cbuf, 0);
                write(cbuf,0,len);
            }
        }
        
        public Writer append(CharSequence csq) throws IOException{
            if(csq == null)
                write("null");
            else
                write(csq.toString());
            return this;
        }
        
        public Writer append(CharSequence csq, int start, int end) throw IOException{
            CharSequence cs = (csq == null ? "null" : csq);
            write(cs.subSequence(start,end).toString());
            return this;
        }
        
        public Writer append(char c) throw IOException{
            write(c);
            return this;
        }
        
        abstract public void flush() throw IOException;
        
        abstract public void close() throw IOException;
    }

    可以看到在Writer类中子类必须重写的类有三个,

    1、abstract public void write(char buf[], int off, int len) throw IOException;

    2、abstract public void flush() throw IOException;

    3、abstract public void close() throw IOException;

    其中,下面三个方法是实现Appendable接口必须实现的方法

    1、public Writer append(CharSequence csq) throws IOException

    2、public Writer append(CharSequence csq, int start, int end) throw IOException

    3、public Writer append(char c) throw IOException

    实现 Flushable接口必须实现的方法是

     abstract public void flush() throw IOException;

    实现Closeable接口必须实现的方法是

    abstract public void close() throw IOException;

  • 相关阅读:
    Linux下管道编程
    【Windows】用信号量实现生产者-消费者模型
    初识【Windows API】--文本去重
    HDU 5183 Negative and Positive (NP) --Hashmap
    【ASC 23】G. ACdream 1429 Rectangular Polygon --DP
    UVALive 4670 Dominating Patterns --AC自动机第一题
    POJ 2225 / ZOJ 1438 / UVA 1438 Asteroids --三维凸包,求多面体重心
    我也来写2014年总结
    UVALive 4870 Roller Coaster --01背包
    UVALive 4864 Bit Counting --记忆化搜索 / 数位DP?
  • 原文地址:https://www.cnblogs.com/cuglkb/p/6903814.html
Copyright © 2011-2022 走看看