Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

this is my code snippet. data is a 2D array of type Object.I have previously saved data in JTable.Now i have written code to delete entry.But if go by this code only first entry gets deleted from JTable.

I am unable to understand the reason behind this.

please help me out in this.

-snippet:

public void deleteActionPerformed(ActionEvent ae) {
  String delname=tf4.getText();
  int c=0;
  try {
    ObjectInputStream ois=new ObjectInputStream(new FileInputStream("data.txt"));
    data=(Object[][])ois.readObject(); 

    for(;;c++) {
      String x=(String)data[c][0];
      if(x.equals(delname)) {
        System.out.println("if working");
        data[c][0]=null;
        data[c][1]=null;
        data[c][2]=null;
        try {
          ObjectOutputStream oos=new ObjectOutputStream(new FileOutputStream("data.txt"));
          oos.writeObject(data);
        } catch(Exception exc) {
          System.out.println("error deleting data from"+" "+c+" row");
        }
        c++;
        JOptionPane.showMessageDialog(new JFrame(),"contact deleted");
        try {
          ObjectInputStream oist=new ObjectInputStream(new FileInputStream("data.txt"));
          data=(Object[][])oist.readObject();       
          JTable tb=new JTable(data,headers);
          ObjectOutputStream oost=new ObjectOutputStream(new FileOutputStream("contacts.txt"));
          oost.writeObject(tb);
        } catch(Exception exc) {
          System.out.println("error updating after deleting");
        }

      }
      else
        System.out.println("else working");


    }
  } catch(Exception exc) {
    System.out.println("error reading data.txt for deleting");
  }   
} 
share|improve this question
Have you tried using an actual debugger? – Matt Ball Mar 13 '11 at 16:26
Do you get any error messages here? – Paŭlo Ebermann Mar 13 '11 at 16:43

2 Answers

After properly indenting your code, it becomes more obvious ...

  • You are re-creating (and re-reading) the file in your loop, instead of after it - why?
  • You are writing out a new JTable object after every deletion.
    • Why writing it out at all?
    • How are you reading them?
  • Additionally, you have two c++ inside your loop, so the second element of the array is skipped.
  • Third, in case of exceptions you simply go on (and even don't print out the whole exception).
share|improve this answer
+1 Beat me by about 5 seconds :-p – Brian Roach Mar 13 '11 at 16:56
@Brian: ... and by 9 seconds on formatting the source-code in the question. Your variant is better, though. – Paŭlo Ebermann Mar 13 '11 at 17:07
Yeah, sorry about that - the message flashed at the top just as I was hitting the submit button. – Brian Roach Mar 13 '11 at 17:15

You can only run this algorithm to delete once before getting a NullPointerException

If in a previous run you deleted any item, you'll get a NPE each time you compare it.

String x=(String)data[c][0];

if(x.equals(delname)) {

It would be safer if you do delname.equals(x) (assuming you have checked that delname is not null before) or check for x == null in the if before equals.

A better solution would be, after the loop, copying the array to a new one without the deleted elements. Even better, after deserializing the object, pass it to a List class and work with it, and only pass it back to array in order to serialize it when you are finished with the program (or directly serialize the List, if you can).

That said, I cannot find anything that would work with the first element but not the others. Maybe it is that when you run your test you first try with the first element and then, after corrupting the array so you'll have a NPE, you test the other elements.

EDIT: Didn't see the extra c++ (probably it was a while before?). Only will work with odd element indexes.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.