欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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();
}
    }
相关标签: byte txt