在此程序中,您將學(xué)習(xí)使用Java從給定文件的內(nèi)容創(chuàng)建字符串的不同技術(shù)。
從文件創(chuàng)建字符串之前,我們假設(shè)在src文件夾中有一個(gè)名為test.txt的文件。
這是test.txt的內(nèi)容
This is a Test file.
import java.io.IOException; import java.nio.charset.Charset; import java.nio.charset.StandardCharsets; import java.nio.file.Files; import java.nio.file.Paths; import java.util.List; public class FileString { public static void main(String[] args) throws IOException { String path = System.getProperty("user.dir") + "\\src\\test.txt"; Charset encoding = Charset.defaultCharset(); List<String> lines = Files.readAllLines(Paths.get(path), encoding); System.out.println(lines); } }
運(yùn)行該程序時(shí),輸出為:
[This is a, Test file.]
在上面的程序中,我們使用System的user.dir屬性來(lái)獲取存儲(chǔ)在變量中的當(dāng)前目錄path。檢查Java程序以獲取當(dāng)前目錄以獲取更多信息。
我們使用defaultCharset()作為文件的編碼。 如果您知道編碼,請(qǐng)使用它,否則使用默認(rèn)編碼是安全的
然后,我們使用readAllLines()方法從文件中讀取所有行。它接受文件的路徑及其編碼,并以列表的形式返回所有行,如輸出所示.
因?yàn)閞eadAllLines也可能拋出IOException,所以我們必須這樣定義main方法
public static void main(String[] args) throws IOException
import java.io.IOException; import java.nio.charset.Charset; import java.nio.file.Files; import java.nio.file.Paths; public class FileString { public static void main(String[] args) throws IOException { String path = System.getProperty("user.dir") + "\\src\\test.txt"; Charset encoding = Charset.defaultCharset(); byte[] encoded = Files.readAllBytes(Paths.get(path)); String lines = new String(encoded, encoding); System.out.println(lines); } }
運(yùn)行該程序時(shí),輸出為:
This is a Test file.
在上面的程序中,我們得到的不是一個(gè)字符串列表,而是一個(gè)包含所有內(nèi)容的字符串
為此,我們使用readAllBytes()方法從給定路徑讀取所有字節(jié)。然后使用默認(rèn)編碼將這些字節(jié)轉(zhuǎn)換為字符串