gpt4 book ai didi

java - 每 100 行向文件写入一行

转载 作者:行者123 更新时间:2023-12-01 16:35:52 30 4
gpt4 key购买 nike

这是我的代码,它从文件中读取 20 万行。

包含正确URL代码的行将其写入true.txt,包含错误URL代码的行将其写入wrong.txt

代码在读取所有行时写入这些文件。我想对其进行一个小更改:当代码读取一百行时,它会更新错误和正确的 file.txt。有人指导我这怎么可能吗?

public static void main(String[] args) throws IOException {
int coded = 0;
int counter = 0;
int timeout = 0;
boolean canConnect = false;
Scanner in = new Scanner(System.in);
System.out.print("Enter the file name:");
String filename = in .nextLine();

BufferedReader br = null;
FileWriter fw = null;
FileWriter ft = null;
String f = "truefile.txt";
String strLine = "";

br = new BufferedReader(new FileReader(filename));
fw = new FileWriter("wrongfile.txt");
ft = new FileWriter(f);

while ((strLine = br.readLine()) != null) {

System.out.println(strLine);
if (strLine.contentEquals("arrow-uee.com")) {
System.out.println("timeout");
} else {
try {
URL u = new URL("http://" + strLine);
HttpURLConnection huc = (HttpURLConnection) u.openConnection();
huc.setUseCaches(false);
huc.setConnectTimeout(timeout);
huc.setRequestMethod("GET");

coded = huc.getResponseCode();

if (coded == HttpURLConnection.HTTP_OK) {
canConnect = true;
}
int code = coded / 100;
if (code == 4 || code == 5 || coded == 303) {
fw.write(strLine + ":error:" + coded + "\n" + "\n");
System.out.println("domain is not ok error:" + coded);
} else {
ft.write(strLine + "\n" + "\n");
System.out.println("domain is ok:");
}
counter++;
System.out.println("total domain checked:" + counter);
} catch (FileNotFoundException e) {
System.err.println("File not found");
} catch (IOException e) {
System.out.println("domain not exist fatal error");
}
}

}
br.close();
ft.close();
fw.close();
}

最佳答案

这就是你的答案,只需添加冲洗

public static void main(String[] args) throws IOException {
int coded = 0;
int counter = 0;
int timeout = 0;
boolean canConnect = false;
Scanner in = new Scanner(System.in);
System.out.print("Enter the file name:");
String filename = in .nextLine();

BufferedReader br = null;
FileWriter fw = null;
FileWriter ft = null;
String f = "truefile.txt";
String strLine = "";

br = new BufferedReader(new FileReader(filename));
fw = new FileWriter("wrongfile.txt");
ft = new FileWriter(f);

while ((strLine = br.readLine()) != null) {

System.out.println(strLine);
if (strLine.contentEquals("arrow-uee.com")) {
System.out.println("timeout");
} else {
try {
URL u = new URL("http://" + strLine);
HttpURLConnection huc = (HttpURLConnection) u.openConnection();
huc.setUseCaches(false);
huc.setConnectTimeout(timeout);
huc.setRequestMethod("GET");

coded = huc.getResponseCode();

if (coded == HttpURLConnection.HTTP_OK) {
canConnect = true;
}
int code = coded / 100;
if (code == 4 || code == 5 || coded == 303) {
fw.write(strLine + ":error:" + coded + "\n" + "\n");
System.out.println("domain is not ok error:" + coded);
} else {
ft.write(strLine + "\n" + "\n");
System.out.println("domain is ok:");
}
counter++;
System.out.println("total domain checked:" + counter);
} catch (FileNotFoundException e) {
System.err.println("File not found");
} catch (IOException e) {
System.out.println("domain not exist fatal error");
}
}
ft.flush();
fw.flush();
}
br.close();
ft.close();
fw.close();

关于java - 每 100 行向文件写入一行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61949801/

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