我有两个文本文件,即- item.txt(文件1)和temp.txt(文件2)。我的目标是在文件1中搜索一个名称,如果找到,然后用不同的名称替换它,并将更新的行写入文件2。此外,我还有一个方法来检查我在文件1中搜索的字符串的行。不包含该字符串的行将被添加到文件2中。
所以,这就是我被困住的地方。除了我想删除文件1并通过文件1(即item.txt)重命名文件2的部分外,一切都很好。有人能帮我纠正一下吗?我仍然是Java的初学者,所以我的代码可能不是最好看的代码,但这是我到目前为止所尝试的。谢谢问题是当我编译代码时,更新的数据被写入file2和file1,应该被删除,不删除。那么,问题是什么呢?
package project4;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileWriter;
import java.io.IOException;
import java.io.PrintWriter;
import java.util.Scanner;
public class kitkat {
PrintWriter out,in;
Scanner in;
Scanner temp;
File file1 = new File("item.txt");
File file2 = new File("temp.txt");
public void write() throws FileNotFoundException {
out = new PrintWriter(file1);
out.println("User1"+ "t"+"639755"+"t"+"400");
out.println("User2"+ "t"+"639725"+"t"+"800");
out.close();
}
public void nfile() throws IOException {
n = new PrintWriter(new FileWriter(file2,true));
}
Scanner input = new Scanner(System.in);
String replacement = "User3";
String search;
String total;
public void search() {
System.out.println("Enter your search name");
search = input.nextLine();
total = search;
}
public void lolipop() throws IOException {
in = new Scanner(file1);
search();
while(in.hasNext()) {
String a,b,c;
a = in.next();
b = in.next();
c = in.next();
if(a.contains(search)) {
System.out.println("Your match is found"+search);
a = replacement;
System.out.println(a+b+c);
n.file();
n.println(a+"t"+b+"t"+c);
n.close();
}
}
}
public void jellybeans() throws IOException {
temp = new Scanner(file1);
while(temp.hasNext()) {
String p,q,r;
p = temp.next();
q = temp.next();
r = temp.next();
if(!(p.contains(total))) {
System.out.println(p+q+r);
n.file();
n.println(p+"t"+q+"t"+r);
n.close();
renamefile();
}
}
}
public void renamefile() {
file1.delete();
file2.renameTo(file1);
}
}
package project4;
import java.io.FileNotFoundException;
import java.io.IOException;
public class tuna {
public static void main(String[] args) throws IOException {
// TODO Auto-generated method stub
kitkat kt = new kitkat();
kt.lolipop();
kt.jellybeans();
}
}
修改如下:
public void renamefile() {
String file1Path = file1.getAbsolutePath();
file1.delete();
file2.renameTo(new File(file1Path));
}
根据File.renameTo(…)
的Javadoc,该方法的行为依赖于平台。如果重命名没有成功,它只返回false
而不抛出异常。所以我想这就是这里的情况。
您可以尝试较新的(自Java 7) Files.move(…)
。此方法与平台无关,并具有适当的错误处理,抛出带有问题描述的异常。