0

我想保存我在文本字段中写的任何内容,并删除程序在单击搜索按钮后找到的行。为什么它不起作用?这是我的两个按钮:

private class dDelete implements ActionListener {
    public void actionPerformed (ActionEvent e) {
        HM.remove((String)result.getText());
    }
}

private class sSave implements ActionListener {
  public void actionPerformed (ActionEvent e) {    
     Set <String> ISet = HM.keySet();
     Iterator itr = ISet.iterator();
     String tuple = "";

     java.io.File iwrite = new java.io.File("c:\\temp\\savetest.txt");
     if (iwrite.exists()){
         System.out.println("The file exists");
         System.exit(0);
     }
     java.io.PrintWriter output = null;
     try {
         output = new java.io.PrintWriter(iwrite);
     } catch(Exception ex) {
         ex.printStackTrace();
     }

     while (itr.hasNext()) {
         String Keys = (String)itr.next();
         String val = HM.get(Keys);
         tuple = Keys + " " + val;

         output.print(tuple);
     }
  }
}
4

1 回答 1

3

您应该关闭输出编写器output.close(),这可能就是原因。

您没有显示要添加到集合 HM 中的内容,因此很难判断删除是否有效。检查对 HM.remove 的调用的返回值,您将查看它是否成功,否则您使用了错误的键(添加为删除时不使用相同/相等的键)。

HM.entrySet()除此之外,当您同时需要键和值( )时,我建议您遍历 entrySet 。

还要根据 Java 命名约定重命名您的类和变量(类以大写字母开头,实例变量不应该等)。了解更多信息。请参阅Java 命名约定

于 2012-05-01T22:42:31.343 回答