PrintStream.append(CharSequence csq,int start,int end)方法實例
java.io.PrintStream.append() 方法將指定的字符序列的子序列來此輸出流。
聲明
以下是java.io.PrintStream.append()方法的聲明
public PrintStream append(CharSequence csq,int start,int end)
參數
-
csq -- 字符序列追加。如果csq為null,則這四個字符“null”被追加到當前輸出流。
-
start -- 在序列的第一個字符的索引
-
end -- 字符以下的子序列的最後一個字符的索引
返回值
這個方法返回當前輸出流
異常
-
IndexOutOfBoundsException -- 如果start或end為負,start大於end,或end大於csq.length()
例子
下麵的示例演示java.io.PrintStream.append()方法的用法。
package com.yiibai; import java.io.*; public class PrintStreamDemo { public static void main(String[] args) { CharSequence csq = "Hello World"; // create printstream object PrintStream ps = new PrintStream(System.out); // append our character sequences ps.append(csq, 6, 11); ps.append(csq, 0, 5); // print the result ps.flush(); ps.close(); } }
讓我們編譯和運行上麵的程序,這將產生以下結果:
WorldHello