Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have this code down below that gives me this output

1,2,3,4,3,4,5,4,3,5,3,4,5,5,4,64,
[Ljava.lang.String;@3e25a5
[I@19821f
[I@19821f
[I@19821f
[I@19821f
[I@19821f
[I@19821f
[I@19821f
[I@19821f
[I@19821f
[I@19821f
[I@19821f
[I@19821f
[I@19821f
[I@19821f
[I@19821f
[I@19821f

The input.txt file contains 1,2,3,4,3,4,5,4,3,5,3,4,5,5,4,64,

The code is this. It is clear there is a simple error in splitting but I find it hard to find what.

public static void main(String[] args) {
    // TODO Auto-generated method stub



    try{
        FileInputStream fstream = new FileInputStream("input.txt");
        DataInputStream  dat = new DataInputStream (fstream);
        BufferedReader in = new BufferedReader(new InputStreamReader(dat));
        String[] str ;

        int arr[] = new int [100];


        String line;

        while ((line = in.readLine()) != null)
            {

                System.out.println(line);
                str = line.split(",");
                System.out.println(str);

                for(int i = 0 ;i<str.length ; i++)
                {
                    arr[i]= Integer.parseInt(str[i]);
                    System.out.println(arr);
                }
            }

        fstream.close();

    }

    catch(IOException e)
    {
        System.out.print(e);
    }


}
share|improve this question
What output do you want? – Ishtar May 10 '11 at 16:19
You're going to get a NumberFormatException because you have a trailing comma and the split() function is going to give you an empty string at the end of your array. – Qwerky May 10 '11 at 16:38

3 Answers

Change this

   System.out.println(arr);

to

   System.out.println(arr[i]);

before you were printing an array arr, not the array's elements.

share|improve this answer
1  
Perfect!!!! Thanks alot its working now – Splitter May 10 '11 at 16:23

It looks like you're repeatedly printing the array, which will cause Java to call the array's toString() method, that will give you output like you've provided.

To fix it, try changing your loop to this:

for(int i = 0 ;i<str.length ; i++)
{
    arr[i]= Integer.parseInt(str[i]);
    System.out.println(arr[i]];
}

To give you a clearer idea what's going on, this program will do something similar:

public class Test {
    public static void main(String[] args) {
        System.out.println(new int[0]);
    }
}

It will output:

[I@164f1d0d
share|improve this answer

remove the unnecessary sysouts to get the exact output. and in last sysout print the element not complete array.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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