byte写入txt文本
程序员文章站
2022-05-31 10:42:13
...
private static void writeByte(byte[] temp) {
File file = new File("BitIO"+DateConstants.DATE_FORMAT_NUM().format(new Date())+".txt");
//建立输出字节流
FileOutputStream fos;
try {
if(!file.exists()){
file.createNewFile();
}
fos = new FileOutputStream(file);
fos.write(temp);
System.out.println("写入成功");
//为了节省IO流的开销,需要关闭
fos.close();
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
File file = new File("BitIO"+DateConstants.DATE_FORMAT_NUM().format(new Date())+".txt");
//建立输出字节流
FileOutputStream fos;
try {
if(!file.exists()){
file.createNewFile();
}
fos = new FileOutputStream(file);
fos.write(temp);
System.out.println("写入成功");
//为了节省IO流的开销,需要关闭
fos.close();
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
推荐阅读
-
浅析php fwrite写入txt文件的时候用 不能换行的问题
-
VS.net VSS时,编译报错:未能向文件“.csproj.FileListAbsolute.txt”写入命令行 对路径 的访问被拒绝。
-
php逐行读取txt文件写入数组的方法 原创
-
C#实现写入文本文件内容的方法
-
写入文本文件的过程函数(ASP)
-
将文本文件TXT中的数据导入Word中并生成表格的具体实现
-
Python统计字符出现次数(Counter包)以及txt文件写入
-
C语言向txt文件写入当前系统时间(Log)
-
Python将列表数据写入文件(txt, csv,excel)
-
Java HashSet对txt文本内容去重(统计小说用过的字或字数)