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

I am currently trying to display a csv file called "Haha2" using csv open in Java. Unfortunately when I print the arraylist I get the hashcode and not the numbers that are contained in the file.

I have tried the .get() method and the .toArray() and .toString methods but I am still only able to print out the hashcode.

Here's my code:

import au.com.bytecode.opencsv.*;
import java.io.*;
import java.util.*;

public class playlist{

   public static void main (String args()) throws IOException {

      CSVReader reader = new CSVReader(new FileReader("Haha2.asc"),';', '"',29);

      List <String[]> data = new ArrayList <String[]>();
      data = reader.readAll();

      System.out.println(data);
   }
}
share|improve this question
1  
You have to loop through all elements in data and then for each element you again have to loop for all elements in each String[]. – Harry Joy Aug 10 '11 at 8:26
@Harry: You should make that an answer! – Oli Charlesworth Aug 10 '11 at 8:29
@Oli: there are already similar answers. – Harry Joy Aug 10 '11 at 8:38

5 Answers

Here is a one-liner which first converts the list to an array giving you an array-of-arrays and then calling Arrays.deepToString().

System.out.println(Arrays.deepToString(data.toArray()));
share|improve this answer

Either loop through your list and call Arrays.toString() on each of the array of Strings, or transform List<String[]> into List<List<String>>.

share|improve this answer

Use Arrays.toString():

for( String[] array : data ) {
    System.out.println(Arrays.toString(data));
}
share|improve this answer

iterate over the List and than over the array:

for( String[] array : data ) {
    for( String string : array ) {
        System.out.println(string);
    }
    System.out.println("---");
}
share|improve this answer
for (String[] arr : data) {
    System.out.println(java.util.Arrays.asList(arr));
    System.out.println("...");
}
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.