Java Dictionary Searcher
问题 I am trying to implement a program that will take a users input, split that string into tokens, and then search a dictionary for the words in that string. My goal for the parsed string is to have every single token be an English word. For Example: Input: aman Split Method: a man a m an a m a n am an am a n ama n Desired Output: a man I currently have this code which does everything up until the desired output part: import java.util.Scanner; import java.io.*; public class Words { public static