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.

link|improve this question
3  
This approach discards some features which may not be interesting e.g. which newline you used. If you want it to be an exact copy, you need to copy the original byte-by-byte. If you want to have the same information is an compatible format (which is what I assume you really mean that should be straight forward) – Peter Lawrey Sep 9 '11 at 16:21
2  
Why do you have array of 1? When you say something like I cannot use a try block. it sounds like homework. – Peter Lawrey Sep 9 '11 at 16:23
I couldn't get anything to show up in the array if i used anything but an array of 1. I am new to programming, and most of the other file io questions on this site are solved with try blocks, and I'm looking for something with while statements. – John Sep 9 '11 at 16:28
1  
I could just give you the answer, or I could help you work it out for yourself. The first thing I would do is place a breakpoint in your code and use your debugger to go through the method line by line and see if that line does what you think it should. You would be surprised how many SO question could be answered if the OP knew how to use their debugger. – Peter Lawrey Sep 9 '11 at 16:31
When you get stuck because you know which line is wrong, but don't know what it should be, add a question about that specifically. – Peter Lawrey Sep 9 '11 at 16:34
show 3 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.