Question: In Java, write a program that reads some lines of code (maybe 3 or 4) into a text file and then give an option that

In Java, write a program that reads some lines of code (maybe 3 or 4) into a text file and then give an option that lets you replace a specific entire line of text with another line of text.

For example

if the text file has contents read:

I like milk

I like candy

I like shoes

I like food

//-----------------------

and i want to replace "I like shoes" with "I like water" the file now reads:

I like milk

I like candy

I like water

I like food

I am asking because I want to work with files with 300 or more large lines of text and be able to replace a line of text efficiently while not using too much memory.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!