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

The format i have in the external file is

name
tel no
mob no
address

From the gui i would like to delete a contact which is in the format of above using my delete button.

i have completed the export method and was wondering if deleting would be similar,, here is my code for exporting.

 {
   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");          
                }
   }
share|improve this question
2  
I would just warn: using relative paths in java.io stuff is a very bad idea. – BalusC Nov 30 '09 at 23:22
stackoverflow.com/questions/1815576/… and stackoverflow.com/questions/1785741/… , are some post that I think are related to the same university assignement. – Nettogrof Nov 30 '09 at 23:45

3 Answers

Do you really have to delete the contact on the file immediatly?

Usually you would do something like this:

  1. Import the file content into your model, iaw a list of Contact objects
  2. Apply all your edits to the model (change values, add a contact, delete a contact)
  3. Save your edits, iaw overwrite the file with your model.

Much, much easier then trying to delete a single row on a file...

share|improve this answer
Like he have ArrayLists that contain the info, I agree this is a easier way to do it – Nettogrof Nov 30 '09 at 23:44

I assume you really have to use a file and cannot use a table in a database.

First of all you will have to assign an id to each contact, so that you can point to a certain contact, the id must be unique other than that it can be everything.

Why not organizing that file as an xml? Is this something your spec allows?

share|improve this answer

Easiest way is to read it fully, skip the lines which are supposed to be deleted and then write it fully back to the file, hereby overwriting the original one. But that's also the least efficient way. For best results, you need to organize your data more in a model.

Why don't you use a (embedded) database instead so that you can just go ahead with a simple SQL DELETE statement?

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.