PrintStream.append(CharSequence csq)方法實例
java.io.PrintStream.append() 方法將指定的字符序列來此輸出流。
聲明
以下是java.io.PrintStream.append()方法的聲明
public PrintStream append(CharSequence csq)
參數
-
csq -- 字符序列追加。如果csq為null,則這四個字符“null”被追加到當前輸出流。
返回值
這個方法返回當前輸出流
異常
-
NA
例子
下麵的示例演示java.io.PrintStream.append()方法的用法。
package com.yiibai; import java.io.*; public class PrintStreamDemo { public static void main(String[] args) { String s = "Hello World. "; // create printstream object PrintStream ps = new PrintStream(System.out); // append our strings ps.append(s); ps.append("This is an example."); // print the result ps.flush(); ps.close(); } }
讓我們編譯和運行上麵的程序,這將產生以下結果:
Hello World. This is an example.