把字符串字节数组写入文件
Posted east7
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了把字符串字节数组写入文件相关的知识,希望对你有一定的参考价值。
/**
* 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。
以上是关于把字符串字节数组写入文件的主要内容,如果未能解决你的问题,请参考以下文章