Ruchi
Ruchi

Reputation: 5192

Export html table into Excel using java / javascript code

I want to export Html table into Excel file using java or javascript.

Upvotes: 0

Views: 4443

Answers (3)

François Wauquier
François Wauquier

Reputation: 568

If you use GWT, you can add this module http://code.google.com/p/gwt-table-to-excel/

Upvotes: 0

Manrico Corazzi
Manrico Corazzi

Reputation: 11371

Java: you may use

display tag

or parse the HTML and go with

POI-HSSF

Javascript: if you can use ActiveX there you go with

this example

Upvotes: 2

NimChimpsky
NimChimpsky

Reputation: 47280

You'll need this, if you are using java:

Apache HSSF

(Horrible SpreadSheet Format, which always makes me chuckle)

Upvotes: 5

Related Questions