在此程序中,您將學(xué)習(xí)如何在Java中將File對(duì)象轉(zhuǎn)換為byte [],反之亦然。
在將文件轉(zhuǎn)換為字節(jié)數(shù)組(反之亦然)之前,我們假設(shè)在src文件夾中有一個(gè)名為test.txt的文件。
這是test.txt的內(nèi)容
This is a Test file.
import java.io.IOException; import java.nio.file.Files; import java.nio.file.Paths; import java.util.Arrays; public class FileByte { public static void main(String[] args) { String path = System.getProperty("user.dir") + "\\src\\test.txt"; try { byte[] encoded = Files.readAllBytes(Paths.get(path)); System.out.println(Arrays.toString(encoded)); } catch (IOException e) { } } }
運(yùn)行該程序時(shí),輸出為:
[84, 104, 105, 115, 32, 105, 115, 32, 97, 13, 10, 84, 101, 115, 116, 32, 102, 105, 108, 101, 46]
在以上程序中,我們將文件的路徑存儲(chǔ)在變量path中。
然后,在try塊內(nèi),我們使用readAllBytes()方法從給定的路徑中讀取所有字節(jié)。
然后,我們使用數(shù)組的 toString()方法來打印字節(jié)數(shù)組。
由于readAllBytes()可能會(huì)引發(fā)IOException,因此我們在程序中使用了try-catch塊。
import java.io.IOException; import java.nio.file.Files; import java.nio.file.Paths; public class ByteFile { public static void main(String[] args) { String path = System.getProperty("user.dir") + "\\src\\test.txt"; String finalPath = System.getProperty("user.dir") + "\\src\\final.txt"; try { byte[] encoded = Files.readAllBytes(Paths.get(path)); Files.write(Paths.get(finalPath), encoded); } catch (IOException e) { } } }
運(yùn)行程序時(shí),test.txt的內(nèi)容將復(fù)制到final.txt。
在上面的程序中,我們使用了與示例1相同的方法從存儲(chǔ)在path中的File中讀取所有字節(jié)。這些字節(jié)存儲(chǔ)在數(shù)組encoded中。
我們還有一個(gè)finalPath,用于寫入字節(jié)
然后,我們僅使用Files的write()方法將編碼的字節(jié)數(shù)組寫入給定finalPath的文件中。