摘要:
Java I/O流分类: 阅读全文
摘要:
扫描目录下文件,修改文件中指定内容 阅读全文
摘要:
1 package test_demo.fileoper; 2 3 import java.io.*; 4 5 /* 6 * 数值字节流操作,复制二进制文件 7 * 输入流:从文件中读取数据,扩展为数据流(二进制) 8 * 输出流:将数据流数据输出到文件中 9 * 注意关闭输入输出流 10 * */ 11 public class DataInOutSteamOper ... 阅读全文
摘要:
1 package test_demo.fileoper; 2 3 import java.io.*; 4 5 /* 6 * 字符输入输出流操作,复制文件 7 * 使用缓冲流扩展,逐行复制 8 * */ 9 public class FileReadWriteOper { 10 public static void main(String args[]) { 1... 阅读全文
摘要:
1 package test_demo.fileoper; 2 3 import java.io.FileInputStream; 4 import java.io.FileOutputStream; 5 import java.io.IOException; 6 7 /* 8 * 字节流操作,复制文件 9 * 输入流:从文件中读取数据,存放在字节数组中 10 * 输... 阅读全文
摘要:
常用操作: 创建File对象的另一种方式: list()和listFiles()的区别: 文件过滤: 阅读全文