Logo 
Search:

Java Forum

Ask Question   UnAnswered
Home » Forum » Java       RSS Feeds

Export from JTable to Excel

  Asked By: Fabiana    Date: May 17    Category: Java    Views: 3175
  

I am quite new to Java technology. i am doing an application where I
must display the Jtable data in an Excel sheet. I have managed to
open the Excel from java using the Runtime class but failed to get
the data from Jtable and display it in Excel when the user clicks on
the button.

Share: 

 

2 Answers Found

 
Answer #1    Answered By: Adelinda Fischer     Answered On: May 17

You must use The Poi of jakarta..........

 
Answer #2    Answered By: Tamara Nguyen     Answered On: May 17

Well, one format that excel  can open is .csv. WHich is just comma separated
values. SO if you have a table like so:
1 | two | three
2 | three| four

you would write a text file like so
1,two,three
2,three,four

This file will open up in excel.

 
Didn't find what you were looking for? Find more on Export from JTable to Excel Or get search suggestion and latest updates.




Tagged: