How can I delete a specific string in a text file?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Locate the file.
Create a temporary file (otherwise you've to read everything into Java's memory first).
Determine the charset.
Determine the string you'd like to delete.
Open the file for reading.
Open the temp file for writing.
Read the file line by line.
Delete the string from the line.
Write it to temp file.
Close the reader and writer (preferably in the
Delete the file.
Rename the temp file.
See also: |
||||
|