摘要: 使用 FileoutputStream 流步骤 1.创建流对象 FileOutputStream fos = new FileOutputStream("c:\\a.txt"); 2.写入流 fos.write("hello,world".getBytes()); 3.关闭流 fos.close() 阅读全文
posted @ 2020-09-22 08:55 F_sinclair 阅读(182) 评论(0) 推荐(0) 编辑