java.io.Writer.append(CharSequence csq)方法实例
java.io.Writer.append(CharSequence csq) 方法将指定的字符序列到这个writer。
声明
以下是java.io.Writer.append()方法的声明
public Writer append(CharSequence csq)
参数
-
csq -- 字符序列追加。如果csq为null,则这四个字符“null”被附加到这个writer。
返回值
此方法返回这个writer
异常
-
IOException -- 如果发生I/ O错误
例子
下面的示例演示java.io.Writer.append()方法的用法。
package com.yiibai; import java.io.*; public class WriterDemo { public static void main(String[] args) { CharSequence csq = "Hello World!"; // create a new writer Writer writer = new PrintWriter(System.out); try { // append a sequence and change line writer.append("This is an example "); // flush the writer writer.flush(); // append a new sequence writer.append(csq); // flush the writer to see the result writer.flush(); } catch (IOException ex) { ex.printStackTrace(); } } }
让我们来编译和运行上面的程序,这将产生以下结果:
This is an example Hello World!