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;

  • 相关阅读:
    OpenCV 2.48配置
    win进入当前文件夹,启动当前文件夹的程序
    C++程序运行效率的10个简单方法
    银行国际清算业务平台架构
    股票证券交易系统架构分析与设计
    负载均衡|六种负载均衡算法
    Intelli IDEA快捷键(配合IdeaVim)(转)
    [易学易懂系列|golang语言|零基础|快速入门|(三)]
    [易学易懂系列|golang语言|零基础|快速入门|(二)]
    [易学易懂系列|golang语言|零基础|快速入门|(一)]
  • 原文地址:https://www.cnblogs.com/cuglkb/p/6903814.html
Copyright © 2011-2022 走看看