W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
PrintStream類是輸出流的具體裝飾器。
PrintStream可以以合適的格式打印任何數(shù)據(jù)類型值,基本或?qū)ο蟆?/span>
PrintStream可以將數(shù)據(jù)寫入輸出流不拋出IOException。
如果一個方法拋出一個IOException,PrintStream設(shè)置一個內(nèi)部標(biāo)志,而不是拋出異常給調(diào)用者??梢允褂闷鋍heckError()方法檢查該標(biāo)志,如果在方法執(zhí)行期間發(fā)生IOException,則返回true。
PrintStream具有自動刷新功能。我們可以在其構(gòu)造函數(shù)中指定它應(yīng)該自動刷新寫入它的內(nèi)容。
如果我們將auto-flush標(biāo)志設(shè)置為true,當(dāng)寫入一個字節(jié)數(shù)組時,PrintStream將刷新它的內(nèi)容,它的一個重載的println()方法用于寫入數(shù)據(jù),一個換行符被寫入,或一個字節(jié)(‘\n’)。
import java.io.File; import java.io.FileNotFoundException; import java.io.PrintStream; public class Main { public static void main(String[] args) { String destFile = "luci3.txt"; try (PrintStream ps = new PrintStream(destFile)) { ps.println("test"); ps.println("test1"); ps.println("test2"); ps.print("test3"); // flush the print stream ps.flush(); System.out.println("Text has been written to " + (new File(destFile).getAbsolutePath())); } catch (FileNotFoundException e1) { e1.printStackTrace(); } } }
上面的代碼生成以下結(jié)果。
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: