Java.io.PrintWriter.setError()方法實例
java.io.PrintWriter.setError() 方法表示發生了錯誤。此方法將導致checkError()後續調用返回true,直到clearError()被調用。
聲明
以下是java.io.PrintWriter.setError()方法的聲明
protected void setError()
參數
-
NA
返回值
此方法不返回任何值。
異常
-
NA
例子
下麵的示例演示java.io.PrintWriter.setError()方法的用法。
package com.yiibai; import java.io.*; public class PrintWriterDemo extends PrintWriter { public PrintWriterDemo(OutputStream out) { super(System.out); } public static void main(String[] args) { String s = "Hello World"; // create a new writer PrintWriterDemo pw = new PrintWriterDemo(System.out); // write substrings pw.write(s, 0, 5); pw.write(s, 6, 5); // flush the writer pw.flush(); // set the error state pw.setError(); } }
讓我們編譯和運行上麵的程序,這將產生以下結果:
HelloWorld