Is there any APIs available in Java that can convert an Excel Sheet into a database table? And also for drawing charts and graphs?
-
It will be a two step process. Step 1 is to convert the Excel Sheet into data you can use and Step 2 will be loading that data into the database. As a general rule of thumb, you should define your database tables ahead of time instead of dynamically generating them.FloppyDisk– FloppyDisk2011-10-06 14:39:40 +00:00Commented Oct 6, 2011 at 14:39
Add a comment
|
4 Answers
A first step could be the POI project of Apache. For graphdrawing, I used to use the Pefuse Framework.
Comments
Well there is this, but just Google it because there are many options for manipulating excel sheets with java.