java修改读取本地文件,并替换内容
public class FileModifyTest { public static void main(String[] args) {
String filePath = "/Users/mac/Desktop/今日任务/1218-plan.txt";
String outPath = "/Users/mac/Desktop/今日任务/1218-plan.txt";
try {
autoReplace(filePath,outPath);
} catch (IOException e) {
e.printStackTrace();
}
}
public static void autoReplace(String filePath, String outPath) throws IOException {
File file = new File(filePath);
Long fileLength = file.length();
byte[] fileContext = new byte[fileLength.intValue()];
FileInputStream in = new FileInputStream(filePath);
in.read(fileContext);
in.close();
String str = new String(fileContext);
str = str.replace("1.车牌预警bug修复", ".车牌预警bug修复");
PrintWriter out = new PrintWriter(outPath);
out.write(str.toCharArray());
out.flush();
out.close();
}
}
以上是 java修改读取本地文件,并替换内容 的全部内容, 来源链接: utcz.com/z/511783.html