Question: Write a program that prompts the user to enter a filename (use a Scanner to get the filename). The program then outputs to the screen

Write a program that prompts the user to enter a filename (use a Scanner to get the filename). The program then outputs to the screen the number of lines, words and characters in the file. C:\users\aaron\Desktop\>java question1 Enter input file name: text1.txt 32 lines 159 words 810 characters. Collect the filename using a JFileChooser instead of using a Scanner. (Not shown here.) Also prompt the user to enter a string to search for in the file. In your output, state how many lines contained the requested string and display the lines and their line number. C:\users\aaron\Desktop\>java question1 Enter input file name: text1.txt Enter a string to search for: and 33 lines 159 words 810 characters. Your requested word - and - was found 8 times. 6: And what to do and how to be 10: But there in the sandpile at Sunday school. 21: Wash your hands before you eat. 23: Warm cookies and cold milk are good for you. 25: Learn some and think some 26: And draw and paint and sing and dance 27: And play and work everyday some. 31: Hold hands and stick together
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
