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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started