Skip to content
Advertisement

Java Export Arrays$ArrayList to csv

I’m going to do a Java library on a simple data frame that can read CSV files, edit the CSV and export CSV file. My problem is on how to export it.
Here is how I read my CSV file:

JavaScript

And this is how I implement the write CSV file:

JavaScript

And this is the exception that it throws to me:

JavaScript

Can I know what is the problem?

Advertisement

Answer

The problem here is your use of rawtypes. Lists in java are generic, and you have to specify the element type you want to use. Also, Lists are not interchangeable with arrays, and cannot directly cast to arrays.

JavaScript

should trigger a warning, and you should not ignore this warning.

Based on your usage, it has to be a

JavaScript

The elements are Lists, because you explicitly convert them from arrays to Lists in

JavaScript

String.split returns a String[], which you convert to a List with Arrays.asList.

This line should be

JavaScript

(you don’t need String.valueOf here, the literal is already a String).

And then in

JavaScript

you get a runtime exception because dataFrames contains Lists, not arrays String[]. This can be rewritten as, for example using enhanced for loop and String.join, and wrapping the writer in a try-with-resources, so that you can’t forget closing it.

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement