• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Reading and Writing using a Large Random Access File

 
Greenhorn
Posts: 4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have a delimited file where each line is of a varying length and can have a varying amount of delimiters. I need to access a random line and replace it with a new line that may be shorter or longer in length. Because the file is large (20MB+), I need to do this as efficiently as possible.

I started with trying to write a simple program that would take a line number, a string, and a file, move to the designated line number, and replace the existing line with the new string. I wanted to scan through the file and after n number of end line characters were reached, write the string after that position.

For example, the program below is supposed to take a file like this:


and change it to this:


The output of my program is below. As you can see, I can't even seem to get a char to read properly. What am I doing wrong?
Path=F:\Eclipse\Workspace\FlashCards\test.txt
Char at 0=?
Char at 2=?
.
.
.
Char at 28=?
Char at 30=?
Reached EOF!
Line 1 File Position=0
Done

 
Sheriff
Posts: 22781
131
Eclipse IDE Spring VI Editor Chrome Java Windows
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
When you call readChar(), your program is actually reading two bytes - since a char is two bytes in size. readChar() should only be used when the value has been written using writeChar().

RandomAccessFile is not a good class for this problem. It cannot add to a file or remove from a file - it can only replace bytes with an equal amount of bytes. That's not what you specified. Check out FileReader and FileWriter instead. You can't read from and write to the same file at the same time though, so you have to either a) read everything first, or b) write to a new file first, then delete the original and rename the new file.
 
Michael Cuoco
Greenhorn
Posts: 4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
After doing some more research on Random Access Files I just scrapped that idea. I ended up doing what you suggested instead and just reading the whole file in, working with it in memory, and saving it at the end.
 
machines help you to do more, but experience less. Experience this tiny ad:
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic