Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Delete Specific Line From Java Text File?

I want to delete a specific line from a text file. I found that line, but what to do next? Any idea?

like image 643
Nouman Avatar asked Oct 24 '25 18:10

Nouman


2 Answers

Read file from stream and write it to another stream and skip the line which you want to delete

like image 83
jmj Avatar answered Oct 27 '25 09:10

jmj


There is no magic to removing lines.

  • Copy the file line by line, without the line you don't want.
  • Delete the original file.
  • rename the copy as the original file.
like image 30
Peter Lawrey Avatar answered Oct 27 '25 09:10

Peter Lawrey