Palani kumar
Posts: 7
Nickname: coolgossip
Registered: Mar, 2002
|
|
Re: Export XLS and CSV Files
|
Posted: Apr 2, 2002 11:15 PM
|
|
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
|
|