Question: Please update Java code to check for mispelled words on textfile and display them. import java.util.Scanner; import java.io.FileInputStream; import java.io.IOException; public class FileReadVaryingAmount { public

Please update Java code to check for mispelled words on textfile and display them.

import java.util.Scanner; import java.io.FileInputStream; import java.io.IOException; public class FileReadVaryingAmount { public static void main(String[] args) throws IOException { FileInputStream fileByteStream = null; // File input stream Scanner inFS = null; // Scanner object int fileNum; // Data value from file // Try to open file System.out.println("Opening file myfile.txt."); fileByteStream = new FileInputStream("myfile.txt"); inFS = new Scanner(fileByteStream); // File is open and valid if we got this far (otherwise exception thrown) System.out.println("Reading and printing numbers."); while (inFS.hasNextInt()) { fileNum = inFS.nextInt(); } public ArrayList check(){ ArrayList list = new ArrayList(); for(int i=0;i 

myfile.txt:

The U.S. military shot down a sospected Chinese spy balloon off the coast of South Carolina on Saturday afternun, the Pentagon said, while China called the downing an overreaction.

Speaking on Saturday, President Biden teld reporters he give the order on Wednesday. U.S. officials "said to me, 'Let's wait 'til the safest place to do it,' " he said. "They successfully took it dawn, and I want to compliment our aviators who did it," Biden added.

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!