I have CSV data (in fact the values are separated by a tab character, but I can use ;
as the separator). The data are stored in a String
object.
Is there simple way to create a JTable with this data (without doing it manually by reading and parsing the String
object) ?
(note: my project is using Java 1.4, but if you have a solution that needs Java 1.5, I would be happy anyway)