在本教程中,我們將通過示例來學(xué)習(xí)Java PrintWriter及其print()和printf()方法。
java.io包的PrintWriter類可用于以通??勺x的形式(文本)寫入輸出數(shù)據(jù)。
它繼承了抽象類Writer。
與其他寫入器不同,PrintWriter將原始數(shù)據(jù)(int、float、char等)轉(zhuǎn)換為文本格式。然后它將格式化的數(shù)據(jù)寫入到寫入器。
另外,PrintWriter類不會(huì)拋出任何輸入/輸出異常。相反,我們需要使用checkError()方法來查找其中的任何錯(cuò)誤。
注意:PrintWriter類還具有自動(dòng)沖洗功能。這意味著,如果調(diào)用println()或printf()方法之一,它將強(qiáng)制寫入器將所有數(shù)據(jù)寫入目標(biāo)。
為了創(chuàng)建打印寫入器,我們必須導(dǎo)入java.io.PrintWriter包。導(dǎo)入包之后,我們就可以創(chuàng)建打印寫入器了。
1.使用其他作家
//創(chuàng)建 FileWriter FileWriter file = new FileWriter("output.txt"); //創(chuàng)建 PrintWriter PrintWriter output = new PrintWriter(file, autoFlush);
這里,
我們創(chuàng)建了一個(gè)打印寫入器,它將數(shù)據(jù)寫入由 FileWriter
autoFlush 是一個(gè)可選參數(shù),用于指定是否執(zhí)行自動(dòng)刷新
2.使用其他輸出流
// Creates a FileOutputStream FileOutputStream file = new FileOutputStream("output.txt"); // Creates a PrintWriter PrintWriter output = new PrintWriter(file, autoFlush);
這里,
我們創(chuàng)建了一個(gè)打印寫入器,它將數(shù)據(jù)寫入由FileWriter表示的文件
autoFlush是一個(gè)可選參數(shù),用于指定是否執(zhí)行自動(dòng)沖洗
3.使用文件名
//創(chuàng)建 PrintWriter PrintWriter output = new PrintWriter(String file, boolean autoFlush);
這里,
我們已經(jīng)創(chuàng)建了一個(gè)將數(shù)據(jù)寫入指定文件的打印寫入器
autoFlush是一個(gè)可選的布爾參數(shù),指定是否執(zhí)行自動(dòng)沖洗
注意:在上述所有情況下,PrintWriter使用某些默認(rèn)字符編碼將數(shù)據(jù)寫入文件。 但是,我們也可以指定字符編碼(UTF8或UTF16)。
//使用某些字符編碼創(chuàng)建一個(gè)PrintWriter PrintWriter output = new PrintWriter(String file, boolean autoFlush, Charset cs);
在這里,我們使用了 字符集指定字符編碼的類。
PrintWriter類提供了各種方法,使我們可以將數(shù)據(jù)打印到輸出中。
print() - 將指定的數(shù)據(jù)打印到寫入器
println() - 將數(shù)據(jù)與末尾的新行字符一起打印到寫入器
import java.io.PrintWriter; class Main { public static void main(String[] args) { String data = "This is a text inside the file."; try { PrintWriter output = new PrintWriter("output.txt"); output.print(data); output.close(); } catch(Exception e) { e.getStackTrace(); } } }
在上面的示例中,我們創(chuàng)建了一個(gè)名為output的打印寫入器。這個(gè)打印寫入器鏈接到文件output.txt。
PrintWriter output = new PrintWriter("output.txt");
要將數(shù)據(jù)打印到文件,我們使用了print()方法。
在這里,當(dāng)我們運(yùn)行程序時(shí),output.txt文件將填充以下內(nèi)容。
This is a text inside the file.
printf()方法可用于打印格式化的字符串。它包含2個(gè)參數(shù):格式化的字符串和參數(shù)。例如,
printf("I am %d years old", 25);
這里,
I am %d years old 是一個(gè)格式化字符串
%d 是格式化字符串中的整數(shù)數(shù)據(jù)
25 是一個(gè)參數(shù)
格式化的字符串包括文本和數(shù)據(jù)。 并且,參數(shù)替換格式化字符串中的數(shù)據(jù)。
因此,將%d替換為25。
import java.io.PrintWriter; class Main { public static void main(String[] args) { try { PrintWriter output = new PrintWriter("output.txt"); int age = 25; output.printf("I am %d years old.", age); output.close(); } catch(Exception e) { e.getStackTrace(); } } }
在上面的示例中,我們創(chuàng)建了一個(gè)名為output的打印寫入器。打印寫入器鏈接到文件output.txt。
PrintWriter output = new PrintWriter("output.txt");
要將格式化的文本打印到文件中,我們使用了printf()方法。
在這里,當(dāng)我們運(yùn)行程序時(shí),output.txt文件將填充以下內(nèi)容。
I am 25 years old.
方法 | 描述 |
---|---|
close() | 關(guān)閉PrintWriter |
checkError() | 檢查寫入器中是否有錯(cuò)誤,并返回布爾結(jié)果 |
append() | 將指定的數(shù)據(jù)追加到寫入器 |