与Java:
我有一个字节[],代表一个文件。
我如何写这个文件(即。C: \ myfile.pdf)
我知道它是用InputStream完成的,但我似乎无法解决它。
与Java:
我有一个字节[],代表一个文件。
我如何写这个文件(即。C: \ myfile.pdf)
我知道它是用InputStream完成的,但我似乎无法解决它。
当前回答
基本的例子:
String fileName = "file.test";
BufferedOutputStream bs = null;
try {
FileOutputStream fs = new FileOutputStream(new File(fileName));
bs = new BufferedOutputStream(fs);
bs.write(byte_array);
bs.close();
bs = null;
} catch (Exception e) {
e.printStackTrace()
}
if (bs != null) try { bs.close(); } catch (Exception e) {}
其他回答
使用Apache Commons IO
FileUtils.writeByteArrayToFile(new File("pathname"), myByteArray)
或者,如果你坚持为自己工作……
try (FileOutputStream fos = new FileOutputStream("pathname")) {
fos.write(myByteArray);
//fos.close(); There is no more need for this line since you had created the instance of "fos" inside the try. And this will automatically close the OutputStream
}
尝试OutputStream或者更具体地说FileOutputStream
你可以试试仙人掌:
new LengthOf(new TeeInput(array, new File("a.txt"))).value();
详情:http://www.yegor256.com/2017/06/22/object-oriented-input-output-in-cactoos.html
从Java 7开始,您可以使用try-with-resources语句来避免资源泄漏,并使您的代码更易于阅读。这里有更多。
要把你的byteArray写入一个文件,你会做:
try (FileOutputStream fos = new FileOutputStream("fullPathToFile")) {
fos.write(byteArray);
} catch (IOException ioe) {
ioe.printStackTrace();
}
File f = new File(fileName);
byte[] fileContent = msg.getByteSequenceContent();
Path path = Paths.get(f.getAbsolutePath());
try {
Files.write(path, fileContent);
} catch (IOException ex) {
Logger.getLogger(Agent2.class.getName()).log(Level.SEVERE, null, ex);
}