Write a program that reads lines from a file and prints them out, removing all occurrences of a specified string from the lines.

java

LANGUAGE: Java CHALLENGE: Write a program that reads lines from a file and prints them out, removing all occurrences of a specified string from the lines. For example, if the class that housed your program was called Exercise12_11, running this prompt on the command line: java Exercise12_11 John filename Would print out the contents of the…

Read More