I'm very new to Java programming, and this is actually part of a problem I need to solve for homework: I am reading the contents of a file line by line as a String into an ArrayList for later processing. I need the program to print out to console the contents of the ArrayList on separate lines, but the output after I run the compiled file prints the first line of the file, then prints the first and second lines together on the next line, then prints the first, second and third lines of the program.

My understanding of how this is supposed to work is that the program will take my file, the FileReader and BufferedReader will grab the lines of text in the file as Strings, which are then placed in the ArrayList with each String at a different position in the ArrayList right? Can someone please tell me where in the while loop I'm going wrong? Thanks!

Code:

public class ArrayListDemo

{
    public static void main (String[]args)
    {
    try
    {
        ArrayList<String> demo= new ArrayList <String>();
        FileReader fr= new FileReader("hi.tpl");
        BufferedReader reader= new BufferedReader(fr);
        String line;
        while ((line=reader.readLine()) !=null)
            {
            //Add to ArrayList
            demo.add(line);
            System.out.println(demo);
            }

        reader.close();
    }catch (Exception e)
        {
            System.out.println("Error: "+e.getMessage());
            System.exit(0);
        }
    }
}

Obtained output:

cat
cat, rat
cat, rat, hat

Expected output:

cat
rat
hat
link|improve this question

75% accept rate
feedback

8 Answers

up vote 2 down vote accepted

The output you are seeing each time is the result of ArrayList.toString() being printed to standard out. Instead, loop through the ArrayList after you've finished reading the contents of the file into the ArrayList:

    while ((line=reader.readLine()) !=null) {            
        //Add to ArrayList
        demo.add(line);            
    }
    reader.close();
    //do fun stuff with the demo ArrayList here
    for (String s : demo) { System.out.println(s); }
link|improve this answer
feedback

The line:

System.out.println(demo);

Should be:

System.out.println(line);

This will, however, do both the reading and printing in one loop. You may be required to do the following after the first loop building the array:

for (String line : demo) {
  System.out.println(line);
}
link|improve this answer
Thanks brainzzy! I might need that second loop, not too sure yet. – Luinithil Jan 7 at 17:19
feedback

You have to print "line" not "demo". In fact printing demo call the ToString() method of the ArrayList that probably print the sequence of the array elements.

So:

demo.add(line);
System.out.println(line);
link|improve this answer
Ah thanks. Silly me not realising that. d'oh! – Luinithil Jan 7 at 17:25
feedback
//Add to ArrayList
demo.add(line);
System.out.println(demo);

You add the line to the list, then print the whole list. Each time.

link|improve this answer
feedback

You're just printing the ArrayList, not its members. You need to iterate through the ArrayList, and print them as you wish (with the comma and space between items).

link|improve this answer
feedback

System.out.println(demo); should be outside the loop.

And demo will be printed with a comma separating the lines.

You would have to create another loop to iterate demo. And print each element with println.

link|improve this answer
This would cause cat, rat, hat, not the desired output of being on separately lines. – brainzzy Jan 7 at 16:51
feedback

You're displaying the object of the ArrayList through statement System.out.println(demo); You indeed need to display the contents of the ArrayList line by line using a loop using such statement System.out.println(line);

It would be better to use foreach instead as follows.

for (String line : demo) 
{
    System.out.println(line);
}
link|improve this answer
feedback

Yes, you're printing the entire list each time, because you're both reading and writing in the same loop.

You'll get your expected output if you do all the reading in one loop followed by another just for writing.

Here's how I'd write it:

public class ArrayListDemo {
    public static void main (String [] args) {
        try {
            List<String> demo= readList(new FileReader("hi.tpl"), "\\s+");
            writeList(demo, System.out);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    private static List<String> readList(Reader reader, String splitRegex) throws IOException {
        List<String> values = new ArrayList<String>();

        BufferedReader br = null;
        try {
            br = new BufferedReader(reader);
            String line;
            while ((line = reader.readLine()) != null) {
                String [] tokens = line.split(splitRegex);
                for (String token : tokens) {
                    values.add(token);
                }
            }
        } finally {    
            try { if (br != null) br.close(); } catch (IOException e) { e.printStackTrace(); }
        }

        return values;
    }

    private static void writeList(List<String> list, PrintStream p) throws IOException {
        if (list != null && p != null) {
            for (String s : list) {
                p.println(s);
            }
        }
    }      
}

One more bit of advice: style matters. You're being sloppy with your brace placement and spacing. Pick a style and be consistent about it. Your code is harder to read and understand if you don't.

link|improve this answer
This is showing alot of code for someone who is doing homework. – Perception Jan 7 at 17:14
How else should someone learn? Why is homework allowed to be a mess? – duffymo Jan 7 at 17:39
Well, it doesn't have to be a mess but I doubt they will learn if all the code is handed to them on a silver platter. – Perception Jan 7 at 17:45
First of all, let's remember that the OP posted their entire class. Nothing was done for them. Second, if you look at what I posted, you'll see that all I did was take the original code and refactor it into two methods. It's a lesson in "don't put everything in a main method." Nothing wrong with that. You posted nothing. Do you waste a lot of your time here posting comments on the efforts of others? – duffymo Jan 7 at 17:48
@duffymo I need to be able to tokenize the Strings as well as search the ArrayList: will using the List implementation be better for that rather than simply creating the ArrayList directly? – Luinithil Jan 7 at 18:00
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.