当前位置 : 主页 > 编程语言 > java >

字节流拷备文档 学会了可以拷一切 1216

来源:互联网 收集:自由互联 发布时间:2023-02-04
import java.io.FileInputStream;import java.io.FileNotFoundException;import java.io.FileOutputStream;import java.io.IOException;public class Test2 { public static void main(String[] args) throws IOException { // 获取字节输入流 FileInp
import java.io.FileInputStream;import java.io.FileNotFoundException;import java.io.FileOutputStream;import java.io.IOException;public class Test2 { public static void main(String[] args) throws IOException { // 获取字节输入流 FileInputStream xsRead = new FileInputStream("小说.txt"); // 获取字节数组 byte[] bytes = new byte[200]; // 获取字节输出流 FileOutputStream xsWrite = new FileOutputStream("小说_字节_拷备.txt"); // 遍历读字节 int len = xsRead.read(bytes); while (len != -1) { // 代码来到这里 意味羞容器中有数据 // 立马写数据 xsWrite.write(bytes, 0, len); // 游戏移动 len = xsRead.read(bytes); } // 关资源 xsWrite.close(); xsRead.close(); // 程序结束 System.out.println("game over"); }}
上一篇:#yyds干货盘点# 名企真题专题:奖学金
下一篇:没有了
网友评论