gpt4 book ai didi

java - 在 JAVA 中搜索和更新文本文件中的字符串

转载 作者:行者123 更新时间:2023-11-30 08:51:49 24 4
gpt4 key购买 nike

我有两个文本文件,即 item.txt(文件 1)和 temp.txt(文件 2)。我的目标是在文件 1 中搜索一个名称,如果找到,则将其替换为不同的名称并将更新的行写入文件 2。另外,我有一个方法来检查我在文件 1 中搜索的字符串的行. 不包含该字符串的行将被添加到文件 2。

所以,这就是我被困的地方。一切正常,除了我想删除文件 1 并用文件 1 重命名文件 2 的部分(即 item.txt)。有人可以帮我更正吗?我仍然是 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));
}

关于java - 在 JAVA 中搜索和更新文本文件中的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30418223/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com