gpt4 book ai didi

java - 在 Java 中覆盖文件

转载 作者:太空宇宙 更新时间:2023-11-04 07:05:40 24 4
gpt4 key购买 nike

try {
BufferedReader br = new BufferedReader(new FileReader(user + ".txt"));
String time = t.toString();

while ((line = br.readLine()) != null) {
String [] check = line.split(";");
date.add(check[0]);
timeIn.add(check[1]);
timeOut.add(check[2]);
}
br.close();

BufferedWriter bw = new BufferedWriter(new FileWriter(user + ".txt"));

if (timeOut.contains("not_out")){
indx = timeOut.indexOf("not_out");
timeOut.set(indx, time);
}

for (int i = 0; i < date.size(); i++) {
d =getDate(i);
ti = ti(i);
to = to(i);
bw.write(d + ";" + ti + ";" + to);
bw.newLine();
}
bw.close();

} catch (Exception e) {
System.out.println("Time out error");
e.printStackTrace();
}
return true;

文本文件的内容是:

eg. 11/22/13;8:00;8:30
11/23/13;8:00;not_out

然后我会将 not_out 替换为当前时间,因为我正在制作计时和超时程序。但总是输出是这样的:

  11/22/13;8:00;8:30
11/22/13;8:00;8:30
11/23/13;8:00;8:40

它总是复制我的第一条记录。

最佳答案

这不是一个答案,因此作为“社区维基”发布,但您绝对需要进行一些基本的调试。你至少应该做一些类似的事情:

try{

BufferedReader br = new BufferedReader(new FileReader(user+".txt"));

String time = t.toString();

while((line=br.readLine())!=null){
String [] check = line.split(";");
System.out.println("check: " + java.util.Arrays.toString(check));
date.add(check[0]);
timeIn.add(check[1]);
timeOut.add(check[2]);
}
br.close();


BufferedWriter bw = new BufferedWriter(new FileWriter(user+".txt"));


if(timeOut.contains("not_out")){
indx = timeOut.indexOf("not_out");
timeOut.set(indx, time);
}

for (int i = 0 ; i <date.size();i++ ){
d =getDate(i);
ti= ti(i);
to= to(i);

// ***** added *****
System.out.printf("i: %d, d: %s, ti: %s, to: %s%n", i, d, ti, to);
bw.write(d+";"+ti+";"+to);
bw.newLine();
}
bw.close();
} catch(Exception e){
System.out.println("Time out error");
e.printStackTrace();
}
return true;
}

您应该再次向我们展示更多代码,包括 ti(...)to(...) 变量。

此外,在此处提问时,您应该努力仅发布格式良好的代码,代码具有规则的、位置恰当的缩进,具有足够但不要太多的空格(尤其是不要太多的空行)。您希望努力让我们轻松为您提供帮助。

关于java - 在 Java 中覆盖文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21431857/

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