重複の可能性:
Java - ファイル内の行を検索して削除
テキスト ファイルから行全体を削除しようとしていますが、スペースのない連続したテキスト行が 1 行しかない場合は、その行を削除できました。文字列間にスペース区切りがある場合、何も削除できません。次のようにコードします。
import java.io.*;
import java.util.Scanner;
public class removebooks {
// construct temporary file
public static void main(String[]args)throws IOException {
String title;
Scanner titlerem= new Scanner (System.in);
System.out.println("Enter Title to remove from file");
title = titlerem.next ();
// construct temporary file
File inputFile = new File("books.txt");
File tempFile = new File(inputFile + "temp.txt");
BufferedReader br = new BufferedReader (new FileReader("books.txt"));
PrintWriter Pwr = new PrintWriter(new FileWriter (tempFile));
String line = null;
//read from original, write to temporary and trim space, while title not found
while((line = br.readLine()) !=null) {
if(line.trim().equals(title)){
continue; }
else{
Pwr.println(line);
Pwr.flush();
}
}
// close readers and writers
br.close();
Pwr.close();
titlerem.close();
// delete book file before renaming temp
inputFile.delete();
// rename temp file back to books.txt
if(tempFile.renameTo(inputFile)){
System.out.println("Update succesful");
}else{
System.out.println("Update failed");
}
}
}
テキスト ファイルの名前は books.txt で、内容は単純に次のようになります。
bookone author1 subject1
booktwo author2 subject2
bookthree author3 subject3
bookfour author4 subject4
助けていただければ幸いです