Results 1 to 2 of 2
Thread: help to delete
- 01-29-2009, 08:01 AM #1
Member
- Join Date
- Jan 2009
- Posts
- 1
- Rep Power
- 0
help to delete
static void writefile() throws IOException
{
FileOutputStream fw=new FileOutputStream("stud.txt", true);
ObjectOutputStream os=new ObjectOutputStream(fw);
Student s1=new Student();
s1.read_student();
os.writeObject(s1);
os.close();
fw.close();
}
Once I write teh record using ObjectOutputStream
how do I delete records and edit records
Please help
- 01-29-2009, 08:29 AM #2
Similar Threads
-
Delete Button
By Zoroxeus in forum JavaServer Faces (JSF)Replies: 3Last Post: 10-26-2008, 02:45 PM -
Delete
By Sarinam in forum New To JavaReplies: 6Last Post: 07-23-2008, 11:09 AM -
Delete From .txt file
By Sarinam in forum New To JavaReplies: 86Last Post: 06-28-2008, 10:17 AM -
How to delete a file
By Alpha in forum New To JavaReplies: 1Last Post: 05-26-2007, 08:11 AM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks