把字符串字节数组写入文件
/**
* Java,把字符串字节数组写入文件
* @param byt
* @throws Exception
*/
private static void byte2File(byte[] byt) throws Exception {
if (null == byt) {
return;
}
String targetFile = "C:\\Users\\fileTestTarget.txt";
File file = new File(targetFile);
OutputStream output = new FileOutputStream(file);
BufferedOutputStream out = new BufferedOutputStream(output);
InputStream in = new ByteArrayInputStream(byt);
byte[] buff = new byte[1024];
int len = 0;
while ((len = in.read(buff)) != -1) {
out.write(buff, 0, len);
}
in.close();
out.close();
System.out.println("---- done ----");
}
如果入参是字符串“HelloWorld”的字节数组,则可以吧HellowWorld写入fileTestTarget.txt。
读后有收获,小礼物走一走,请作者喝咖啡。
Buy me a coffee. ☕Get red packets.
作者:楼兰胡杨
本文版权归作者和博客园共有,欢迎转载,但请注明原文链接,并保留此段声明,否则保留追究法律责任的权利。