Hi all,
I am trying to take a list of words (from a text file) and then split each word into characters how can I do this?
The code I currently have just reads in all the words (at, as, ate, apple, apply) found in text file and prints them out (as many times as the length of the word). What I really want is for my program to take one word from the text file and split it into characters on one line in the output. Would I have to save the words from the text file in an array first?
My code:
import java.io.*;
class FileReadTest {
public static void main (String[] args) {
FileReadTest t = new FileReadTest(); //creates object of the class
t.readMyFile(); //applies the readMyFile method to the object
}
void readMyFile() {
String record = null; //initialises the string variable record to null
try {
FileReader fr = new FileReader("C:\\Documents and Settings\\sumiya\\My Documents\\Scrabble Project\\scrabbledict.txt");
//creates a new filereader for the named file in the arguments
BufferedReader br = new BufferedReader(fr);
record = new String();
while ((record = br.readLine()) != null) {
System.out.println(record);
for(int i=0; i<record.length(); i++){
record.charAt(i);
System.out.println("Character at i = " +record);
}
}
} catch (IOException e) {
// catches possible io errors from readLine()
System.out.println("Uh oh, got an IOException error!");
e.printStackTrace();
}
}
} // end of class