Java Java.io.FilterWriter.write() 方法

  • 描述

    java.io.FilterWriter.write(char[] cbuf, int off, int len)方法将len字符数的一部分写入字符写入器,从字符数组的偏移量中读取read()。
  • 声明

    以下是java.io.FilterWriter.write(char[] cbuf, int off, int len)方法的声明-
     public void write(char[] cbuf, int off, int len)
  • 参数

    • cbuf要写入此过滤器编写器的源字符缓冲区。
    • off -从其开始读取字符的偏移量。
    • len要写入的字符数。
  • 返回值

    该方法不返回任何值。
  • 异常

    IOException如果发生I / O错误。
  • 例子

    以下示例显示java.io.FilterWriter.write(char [] cbuf,int off,int len)方法的用法。
     
    package com.jc2182;
    import java.io.FilterWriter;
    import java.io.StringWriter;
    import java.io.Writer;
    
    public class FilterWriterDemo {
       public static void main(String[] args) throws Exception {
          FilterWriter fw = null;
          Writer w = null;
          char[] cbuf = {'A','B','C','D','E','F'};
          String s = null;
          
          try {
             // create new reader
             w = new StringWriter(6);
              
             // filter writer
             fw = new FilterWriter(w) {
             };
             
             // write to filter writer from character buffer
             fw.write(cbuf, 2, 4);
    
             // get the string
             s = w.toString();
             
             // print
             System.out.print("String: "+s);
             
          } catch(Exception e) {
             // if any I/O error occurs
             e.printStackTrace();
          } finally {
             // releases system resources associated with this stream
             if(w!=null)
                w.close();
             if(fw!=null)
                fw.close();
          }
       }
    }
    
    让我们编译并运行以上程序,这将产生以下结果-
     String: CDEF