Java PrintWriter checkError()方法
java.io.PrintWriter.checkError() 方法刷新该流,如果它不是关闭,并检查其错误状态。
1 语法
public boolean checkError()
2 参数
无
3 返回值
如果打印流在基础输出流上或在格式转换期间遇到错误,则此方法返回true。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.io.PrintWriter.checkError()方法的例子
*/
import java.io.*;
public class Demo {
public static void main(String[] args) {
String s = "Hello World ";
// create a new stream at system
PrintWriter pw = new PrintWriter(System.out);
// append the sequence
pw.append(s);
// check if there is an error and flush
System.out.println("" + pw.checkError());
}
}
输出结果为:
Hello World false
热门文章
优秀文章