I am trying to read text from a file and turn that text into an array, and then print that array to a different file in the exact format that the text of the original file was in. I cannot use a try block. The modulelist (the file I am reading from) consists of integers and words. My code:
public void addFileListToInventory(String filename) throws IOException {
File modinv = new File ("modulelist");
PrintWriter pr = new PrintWriter("exportlist");
BufferedReader buf = new BufferedReader(new java.io.FileReader(modinv));
String line = null;
String[] inv = new String[1];
while((line = buf.readLine()) != null){
StringTokenizer stuff = new StringTokenizer(line);
while(stuff.hasMoreTokens()){
for(int i=0; i<inv.length; i++){
line = stuff.nextToken();
inv[i] = line;
for(int j=0; j<inv.length; j++){
pr.println((" " + inv[j]));
}
}
System.out.print((Arrays.toString(inv)));
}
}
buf.close();
pr.close();
}
This code saves the the text into the array, and prints it to the exportlist, but I can not figure out how to print it in the original format.
I cannot use a try block.it sounds like homework. – Peter Lawrey Sep 9 '11 at 16:23