Parse to excel?

Hey!I wonder if i could parse from a Jtable or from text to a excel file?Using some java code? I want to have it like a button, "Extract" that should do this./ThanksMike
[211 byte] By [ironmajka] at [2007-10-3 1:05:01]
# 1

Look into [url=http://jakarta.apache.org/poi/]POI[/url], which is a Java Library handling Microsoft Office file formats.

Alternatively, you could simply export to a CSV file, which excel can import quite easily (with the added feature that other non-Microsoft Spreadsheets tools can read it as well).

JoachimSauera at 2007-7-14 18:01:28 > top of Java-index,Java Essentials,Java Programming...
# 2
http://www.rgagnon.com/javadetails/java-0516.html
java_2006a at 2007-7-14 18:01:29 > top of Java-index,Java Essentials,Java Programming...
# 3
Do i have to download some classes or something to run this Jexcel or POI? Or can i run it with the usual Java API ?/Thanks alotMike
ironmajka at 2007-7-14 18:01:29 > top of Java-index,Java Essentials,Java Programming...
# 4
To use POI you have to download POI.POI is pure Java.
mlka at 2007-7-14 18:01:29 > top of Java-index,Java Essentials,Java Programming...
# 5
generally you have to download a jar library and use it.java API don't include everything !!
java_2006a at 2007-7-14 18:01:29 > top of Java-index,Java Essentials,Java Programming...