Apr 2, 2002 #1 Stevoie Programmer Jun 7, 2001 68 IE I want to be able to jump to a position in a text file and delete a specificed number of chars from it. Having major problems getting this to work, any help would be great.
I want to be able to jump to a position in a text file and delete a specificed number of chars from it. Having major problems getting this to work, any help would be great.
Apr 2, 2002 #2 meadandale Programmer Jun 2, 2001 356 You can't delete the chars , per se, you can only write over them. You move the file pointer via: RandomAccessFile.seek(long offset) Upvote 0 Downvote
You can't delete the chars , per se, you can only write over them. You move the file pointer via: RandomAccessFile.seek(long offset)