我需要在文本文件中替换特定的行号。我编写代码并且它正在工作但有时我的代码替换了2行。有什么不好?有更快的方法来替换不使用我的方法? 好的,这是代码
int last=0;
Boolean brak=false;
try{
BufferedReader br = new BufferedReader(new FileReader("last.txt"));
String strLine;
int count=0;
//Read File Line By Line
while ((strLine = br.readLine()) != null) {
// Print the content on the console
if(count==1) {last=Integer.parseInt(strLine);
}
count++;
}
//Close the input stream
br.close();
}catch (FileNotFoundException e){//Catch exception if any
System.out.println(e.toString());
brak=true;
}
catch (IOException e) {
e.printStackTrace();}
try(Connection c = MsSqlConnect.getConnection())
{
System.out.println(last);
String SQL = "Select ob_id,ob_dokMagId,dok_NrPelny,ob_TowId,tw_Nazwa,ob_IloscMag,ob_WartBrutto,dok_Typ from dok_Pozycja dp "
+ "RIGHT JOIN dok__Dokument ON dok_Id=ob_DokMagId "
+ "LEFT JOIN tw__Towar ON tw_Id=ob_TowId "
+ "Where ob_TowRodzaj=1 AND dp.ob_id>"+last;
ResultSet rs = c.createStatement().executeQuery(SQL);
int tlast=last;
while(rs.next()){
data.add(new OrderSU(rs.getInt("ob_dokMagId"), rs.getString("dok_NrPelny"), rs.getInt("ob_TowId"), rs.getString("tw_Nazwa"), rs.getInt("ob_IloscMag"), rs.getFloat("ob_WartBrutto"),rs.getInt("dok_Typ")));
last=rs.getInt("ob_id");
}
if(brak==true){
try(PrintWriter out = new PrintWriter(new BufferedWriter(new FileWriter("last.txt", true)))) {
out.print("0"+"\r\n"+last);
}catch (IOException e) {
//exception handling left as an exercise for the reader
}
}
else
{
try {
System.out.println(last+" "+tlast);
BufferedReader file = new BufferedReader(new FileReader("last.txt"));
String line;String input = "";
int count=0;
while ((line = file.readLine()) != null){
input += line + "\r\n";
if(count==1) {
input = input.replace(Integer.toString(tlast), Integer.toString(last));
}
count++;
}
file.close();
System.out.print(input);
FileOutputStream File = new FileOutputStream("last.txt");
File.write(input.getBytes());
file.close();
} catch (Exception e) {
System.out.println("Problem reading file.");
}
}
c.close();
我使用此功能2次。第一行保存DB的最后一个ID,第二行保存另一个DB的最后一个ID。我需要使用此ID来持续更改数据库行。
答案 0 :(得分:2)
input
是累积的。也就是说,如果您从文件中读取了5行,input
将包含所有5行。所以如果你说
input = input.replace(Integer.toString(tlast), Integer.toString(last));
此时,由于input
包含5行的文本,因此它将在所有这5行中执行替换。
如果您只想在一条输入线上进行更换,则需要修复逻辑。
答案 1 :(得分:0)
您可能希望将最后一行读入另一个变量中。 "输入"保留到目前为止阅读的所有内容。
答案 2 :(得分:0)
请改为尝试:
line = line.replace(Integer.toString(tlast), Integer.toString(last));
将它放在input += line + "\r\n";