Hello,
How to move data from a CSV file to a JTable, and from a JTable to a CSV
file ?
Thanks,
Tintin92
Andrew Thompson - 14 Feb 2007 18:51 GMT
...
> How to move data from a CSV
Parse the data into a...(1)
>..file
e.g. FileInputStream
>.. to a JTable,
(1) data structure such as an Objet[][]
TableModel or Vector and hand it to
the constructor.
>..and from a JTable to a CSV
> file ?
Do the above in reverse.
> Thanks,
No worries.
Andrew T.