我想根據行中的2個部分刪除文件中的一行:書名和它的ID。我希望用戶輸入兩者,如果他們都在一行中,請刪除該行。這是我的代碼,但唯一的問題是,removeLine
說「不能從int轉換爲字符串」。 有誰知道如何解決這個問題?Java從文件中刪除行
File inFile = new File("books.txt");
if (!inFile.isFile()) {
return;
}
File tempFile = new File("books.txt" + "1");
BufferedReader br = new BufferedReader(new FileReader(inFile));
PrintWriter pw = new PrintWriter(new FileWriter(tempFile));
String line = null;
JTextField xField = new JTextField(10);
JTextField yField = new JTextField(10);
JPanel myPanel = new JPanel();
myPanel.add(new JLabel("Title:"));
myPanel.add(xField);
myPanel.add(Box.createHorizontalStrut(15)); // a spacer
myPanel.add(new JLabel("ID:"));
myPanel.add(yField);
String removeLine = JOptionPane.showConfirmDialog(null, myPanel,
"Remove", JOptionPane.OK_CANCEL_OPTION);
if (removeLine == JOptionPane.OK_OPTION) {
while ((line = br.readLine()) != null) {
if (!line.trim().contains(removeLine)) {
pw.println(line);
pw.flush();
}
}
pw.close();
br.close();
//Delete the original file
if (!inFile.delete()) {
System.out.println("Could not delete file");
return;
}
//Rename the new file to the filename the original file had.
if (!tempFile.renameTo(inFile)) {
System.out.println("Could not rename file");
}
*以防萬一有人想知道我是否嘗試將removeLine更改爲int,但隨後contains(removeLine)給我提供了錯誤「方法contains(CharSequence)在類型字符串中不適用於參數int」 – jkjk
I認爲你的解決方案在這裏解釋http://stackoverflow.com/questions/6555040/multiple-input-in-joptionpane-showinputdialog你不會恢復用戶從xField和yField引入的值。 removeLine將只包含JOptionPane.OK_OPTION或JOptionPane.CANCEL_OPTION而不是要刪除的書 – RubioRic