[Java] PrintStream
Java.io.PrintStream 是一個print的方法,不同的地方在於將字串寫到檔案的時候不會產生IOException,使用方法請看下面的筆記:
PrintStream ps = new PrintStream(System.out); //一般的output
PrintStream ps = new PrintStream(new File()); //寫到檔案
ps.print("values"); //要寫入的值
範例:
import java.io.*; public class PrintStreamDemo { public static void main(String[] args) { // create printstream object PrintStream ps = new PrintStream(System.out); // print this string ps.print("This is a String"); // print new line ps.println(); // print a new string ps.println("New line"); // flush the stream ps.flush(); } }結果:
This is a String New line
留言
張貼留言