Home > Blockchain >  Modifying txt file in Java without creating temp file
Modifying txt file in Java without creating temp file

Time:09-30

I have a .txt file that will be accessed by many users, possibly at the same time (or close to that) and because of that I need a way modify that txt file without creating a temporary file and I haven't found answer or solution to this. So far, I only found this approach ->

Take existing file -> modify something -> write it to a new file (temp file) -> delete the old file.

But his approach is not good to me, I need something like: Take existing file -> modify it -> save it.

Is this possible? I'm really sorry if this question already exists, I tried searching Stack-overflow and I read thru Oracle Docs but I haven't found solution that suits my needs.

EDIT:

After modification, file would stay the same size as before. For example imagine list of students, each student can have value 1 or 0 (passed or failed the exam)

So in this case I would just need to update one character per row in a file (that is per, student). Example:

Lee Jackson 0 -> Lee Jackson 0

Bob White 0 -> would become -> Bob White 1

Jessica Woo 1 -> Jessica Woo 1

In the example above we have a file with 3 records one below other and I need to update 2nd record while 1st and 3rd would became the same and all that without creating a new file.

CodePudding user response:

Here's a potential approach using RandomAccessFile. The idea would be to use readline to read it in strings but to remember the position in the file so you can go back there and write a new line. It's still risky in case anything in the text encoding would change byte lenght, because that could overwrite the line break for example.

void modifyFile(String file) throws IOException {
    try (RandomAccessFile raf = new RandomAccessFile(file, "rw")) {
        long beforeLine = raf.getFilePointer();
        String line;
        while ((line = raf.readLine()) != null) {
            // edit the line while keeping its length identical
            if (line.endsWith("0")) {
                line = line.substring(0, line.length() - 1)   "1";
            }
            // go back to the beginning of the line
            raf.seek(beforeLine);
            // overwrite the bytes of that line
            raf.write(line.getBytes());
            // advance past the line break
            String ignored = raf.readLine();
            // and remember that position again
            beforeLine = raf.getFilePointer();
        }
    }
}

Handling correct String encoding is tricky in this case. If the file isn't in the encoding used by readline() and getBytes(), you could workaround that by doing

// file is in "iso-1234" encoding which is made up.
// reinterpret the byte as the correct encoding first
line = new String(line.getBytes("ISO-8859-1"), "iso-1234");
... modify line
// when writing use the expected encoding
raf.write(line.getBytes("iso-1234"));

See How to read UTF8 encoded file using RandomAccessFile?

CodePudding user response:

Try storing the changes you want to make to a file in the RAM (string or linked list of strings). If you read in the file to a linked list of strings (per line of the file) and write a function to merge the string you want to insert into that linked list of lines from the file and then rewrite the file entirely by putting down every line from the linked list it should give you what you want. Heres what I mean in psudocode the order is important here. By reading in the file and setting after input we minimize interference with other users.

String lineYouWantToWrite = yourInput
LinkedList<String> list = new LinkedList<String>()
while (file has another line)
    list.add(file's next line)

add your string to whatever index of list you want
write list to file line by line, file's first line = list[1]...
  • Related