Java PrintStream close()方法
java.io.PrintStream.close() 方法关闭该流。这是通过冲洗流,然后关闭完成底层输出流。
1 语法
public void close()
2 参数
无
3 返回值
无
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.io.PrintStream.close()方法的例子
*/
import java.io.*;
public class Demo {
public static void main(String[] args) {
String s = "Hello World.";
// create printstream object
PrintStream ps = new PrintStream(System.out);
// print our string
ps.println(s);
// closing stream
System.out.println("Closing Stream...");
// close the stream
ps.close();
}
}
输出结果为:
Hello World.
Closing Stream...
热门文章
优秀文章