I'm writing spell checker program, which checks every word of some .txt file. it reads file while end of file is reached, and when it finds incorrect word it suggests correct variants in JList. and user chooses one and presses "next" button. Then it continues reading and searching for incorrect word.
while(EOF is not reached)
{
check(word);//this returns array of suggestions
if("next" button is pressed)
{
list.getSelectedWord() and continue while loop
} else {
suspend loop until "next" button is pressed
}
}
"Suspending" the while loop is not the right approach. Instead, your spell checking algorithm should be parameterized so that you can specify where to begin (in the same way that
indexOf
offers an overload that allows you to specify where the search should start).Then, where you currently have the comment
suspend loop until "next" button is pressed
, you should simply exit out of the method. Then, the next time the "next" button is pressed, you start up the checker again, passing into that method the position in the file you had left off. (Alternatively, you could store that position in a field of your class.)