1 File
类
可以使用File
类:
1. 获取文件或文件夹的属性
2. 判断文件或文件夹是否存在
不能用File
类创建文件。
2 文件输入和输出
使用Scanner
类读取文本文件,使用PrintWriter
类写文本文件。文件行分隔符依赖于系统,UNIX上是\n
,Windows上是\r\n
, 为了实现平台无关,使用下列语句获取行分隔符:
String lineSeparator = System.getProperty("line.separator");
文本替换的例子, 使用类似下面的命令实现文件中的字符串替换,
java ReplaceText FormatString.java t.txt StringBuilder StringBuffer
代码如下:
package fileio;
import java.io.*;
import java.util.*;
public class FileIO {
public static void main(String[] args) {
// TODO code application logic here
// Check command line parameter usage
if (args.length != 4) {
System.out.println("Usage: java ReplaceText sourceFile targetFile oldStr newStr");
System.exit(1);
}
// Check if source file exists
File sourceFile = new File(args[0]);
if (!sourceFile.exists()) {
System.out.println("Source file " + args[0] + " does not exist");
System.exit(2);
}
// Check if target file exists
File targetFile = new File(args[1]);
if (targetFile.exists()) {
System.out.println("Target file " + args[1] + " already exists");
System.exit(3);
}
try ( // try 的这种用法,只有JDK8才支持
// Create input and output files
Scanner input = new Scanner(sourceFile);
PrintWriter output = new PrintWriter(targetFile);) {
while (input.hasNext()) {
String s1 = input.nextLine();
String s2 = s1.replaceAll(args[2], args[3]);
output.println(s2);
}
}
}
}
[1] Introduction to Java Programming 10th. Chapter 12. Exception Handling and Text I/O