字节流写数据运行示例
Posted pxy-1999
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字节流写数据运行示例相关的知识,希望对你有一定的参考价值。
/* FileOutputStream:文件输出流用于将数据写入File */ public class FileOutPutStreamDemo01 { public static void main(String[] args) throws IOException { //创建字节输出流对象 //FileOutputStream (String name):创建文件输出流以指定的名称写入文件 FileOutputStream fos = new FileOutputStream("myFile\\fos.txt"); //void write(int b):将指定的字节写入此文件输出流 fos.write(97); //最后都要释放资源 //void close():关闭此文件输出流并释放与此流相关联的任何系统资源。 fos.close(); } }
运行结果:
以上是关于字节流写数据运行示例的主要内容,如果未能解决你的问题,请参考以下文章