格式我有在外部文件是我將如何從外部文件中刪除數據?
name
tel no
mob no
address
從GUI我想刪除聯繫人這在上面使用我的刪除按鈕的格式。
我已完成導出方法,並想知道是否刪除會類似,這裏是我的導出代碼。
{
FileOutputStream file;
PrintStream out;
try { file = new FileOutputStream("../files/example.buab", true);
out = new PrintStream(file);
out.println(txtname.getText());
out.println(txtnum.getText());
out.println(txtmob.getText());
out.println(txtadd1.getText());
System.err.println ("");
out.close();
}
catch (Exception e)
{
System.err.println ("Error in writing to file");
}
}
我只是警告:在java.io中使用相對路徑的東西是一個非常糟糕的主意。 – BalusC
http://stackoverflow.com/questions/1815576/the-buttons-are-working-but-they-are-interacting-with-the-compiler-not-the-gui和http://stackoverflow.com/questions/1785741/address-book-next-and-previous-buttons /,是一些我認爲與大學相關的文章。 – Nettogrof