Question: I have to make a Java code from scratch that has to unjumble jumbled words from an input file. I need help with writing out

I have to make a Java code from scratch that has to unjumble jumbled words from an input file. I need help with writing out the rest of the code as I believe I have it started correctly, but please correct my logic if it is wrong.
1. Expect the user must to put a filename on the command line like this: C:\>java Lab4 jumbles.txt
2. Use that args[0] value as the name of the input file and open it with a BufferedReader
3. Load every line/word of that input file (one word per line) into an ArrayList of String
4. Sort that ArrayList of words
5. With every word of the ArrayList output a single line of output containing the word, a space, the canonical form of the word
import java.util.* import java.io.* public class Lab4 public static void main (String[] args) throws Exception if (args.length aara Lab4 jumbles.tas, "); String[] wordlist = new String[INITIAL CAPACITY]; int wordcount = 0; BufferedReader infile new BufferedReader ( new FileReader (args [0]) ); while infile.ready ) String word = infile. readLine() ; infile.close ) system.out.println
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
