Java.io.FilterWriter.write() 方法

描述

java.io.FilterWriter.write(int c) 方法将单个字符写入过滤器编写器。


声明

以下是 java.io.FilterWriter.write(int c) 方法的声明 −

public void write(int c)

参数

c − 指定要写入此过滤器编写器的源字符的整数。


返回值

该方法不返回任何值。


异常

IOException − 如果发生 I/O 错误。


示例

下面的例子展示了 java.io.FilterWriter.write(int c) 方法的使用。

package com.tutorialspoint;

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;
      String s = null;
      
      try {
         // create new reader
         w = new StringWriter(6);
          
         // filter writer
         fw = new FilterWriter(w) {
         };
         
         // write to filter writer
         fw.write(65);
         fw.write(66);
         fw.write(67);

         // 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: ABC