Does anybody know how to remove a line from a textfile.
I'm looking for something else than read and write line by line and skip the line you want te remove.
For example: My file counts 1346 lines and I want to remove line 520.
|
|
A text file isn't something that supports zero-cost reorganization. It is simply a contiguous sequence of bytes. If you want to remove some bytes from the middle of the file (and by implication move all the following bytes up cover the removed bytes), you have to copy and re-write all those following bytes. You have a few options. Read the entire file into memory, do your removal, and then write the file out. (hopefully to a temp file which you rename over on top of the original after successfully completing the write) Or do some fancy footwork with just reading in a buffers worth of data from the source file and doing some work on it. |
|||
|
|
Does the solution need to be written in Java? The UNIX commands sed and grep are made for just this purpose and will likely perform better. If you are running Windows, you can get access to these tools via Cygwin or there might be native ports out there. |
|||||
|
|
Yes. Rob is right. try this
redirect the output to new file here 520 is the line number you want to delete |
|||
|
|
|
You can read the entire file in, do a regex replace (given that you know the exact match etc) then write the file back out. Personally I'm not sure of how much value this answer is :) |
|||||
|
|
well, if you know the length (or the content of the last line):
|
|||