Hi,
I know spring can export data to csv file on web MVC.
But, How can I do the other way around?
I have a csv data and I would like to display it on the web application as a table.
For example:
my csv data
and display the data in a table (Sorry, I meant to create a table, but I don't know how so I can display as a table instead the html code)Code:coloum 1;coloum 2;abc;12345
Can anyone point me to the right direction on how to do this.HTML Code:<table> <tr> <td>coloum 1</td> <td>coloum 2</td> <td>abc</td> <td>12345</td> </tr> </table>
Thanks,



Reply With Quote