The Artima Developer Community
Sponsored Link

Java Answers Forum
Export XLS and CSV Files

3 replies on 1 page. Most recent reply: Apr 9, 2002 1:43 PM by Thomas SMETS

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 3 replies on 1 page
Thomas

Posts: 2
Nickname: frank
Registered: Apr, 2002

Export XLS and CSV Files Posted: Apr 2, 2002 7:26 AM
Reply to this message Reply
Advertisement
Hi, i need help in creating XLS and CSV Files in JSP especially writing dynamically data in the files - Thanks


Palani kumar

Posts: 7
Nickname: coolgossip
Registered: Mar, 2002

Re: Export XLS and CSV Files Posted: Apr 2, 2002 11:15 PM
Reply to this message Reply
Hai

you can set the content type in jsp as application/vnd.msexcel and you can send the output from jsp

for example you have two columns Name and age

after getting the result set ,you can just use

response.setContentType("application/vnd.ms-excel");
out.println(rs.getStr ing("Name")+","+rs.getString("age"));

the browser will receive the response and open it in browser

Cheers

Palanikumar

Thomas

Posts: 2
Nickname: frank
Registered: Apr, 2002

Re: Export XLS and CSV Files Posted: Apr 3, 2002 1:33 AM
Reply to this message Reply
thanks - do you have expirience if this works in JDynamite too ? I?d like to fill the template variables with dynmaically data

Thomas SMETS

Posts: 307
Nickname: tsmets
Registered: Apr, 2002

Re: Export XLS and CSV Files Posted: Apr 9, 2002 1:43 PM
Reply to this message Reply
I would suggest you look at alphaworks (an I.B.BM. web site) where I know they posted a class to talk to Word !
May be they have also provided a version to talk to Excel, if you want to include really advanced tings !

Thomas,

Flat View: This topic has 3 replies on 1 page
Topic: How to make a pane that will show all components rotated with 90* to left Previous Topic   Next Topic Topic: javax.swing.JApplet - class not found error

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use