create excel sheet using jsp

In this example we create excel sheet and insert
values into table of the excel sheet .
In this example we use page directive and set the contentType="application/vnd.ms-excel". The purpose of this to set this contenType is to display the output
in excel format.
<%@ page contentType="application/vnd.ms-excel" %> :
Here, we insert the data into table. The data will display into
tabular format in excel sheet. You can also use third party API for creating a
excel sheet in JSP. You will learn more about the procedure of using the third
party APIs in the next section that has been provided by Jakarta Apache Foundation
Group.
The code of the program is given below:
<%@ page contentType="application/vnd.ms-excel" %>
<html>
<head>
<title>Inserting data in Excel Sheet Using JSP</title>
</head>
<body>
<table>
<tr><th colspan="4"><b>RoseIdia Pvt Ltd.
Team detail</b></th></tr>
<tr>
<th>Name</th>
<th>Designation </th>
<th>Contact Number</th>
<th>Email Id</th>
</tr>
<tr>
<td>Rajesh kumar</td>
<td>Software Deveploper</td>
<td>9891589173</td>
<td>rajeshpatel_04@yahoo.co.in</td>
</tr>
<tr>
<td>Santosh Kumar</td>
<td>Web Designer</td>
<td>9350534522</td>
<td>skashyapshan@gmail.com</td>
</tr>
<tr>
<td>Chandan</td>
<td>Team Leader</td>
<td>9911544678</td>
<td>chandan3verma@gmail.com</td>
</tr>
</table>
</body>
</html>
|
The output of the program is given below:

Download this example.

|
Current Comments
5 comments so far (post your own) View All Comments Latest 10 Comments:how to filter a column? i mean, for example jsp form table has name, surname, referance number... etc. and i want to filter name and surname. Excel has to show only referance number when i check the check box(es).
Posted by fereke on Monday, 07.28.08 @ 13:15pm | #69531
how to create a graph on a jsp webpage
Posted by parul on Thursday, 05.8.08 @ 11:12am | #58887
I need to freeze panes in the excel example you have given. Can you tell how we can do the same?
Posted by Gul Suhanda on Friday, 12.28.07 @ 13:16pm | #44032
how to run this file and how add this file in xls sheet.
Posted by vbnvbn on Wednesday, 09.5.07 @ 12:56pm | #25073
The code is very good.
Posted by ramesh on Wednesday, 06.6.07 @ 10:45am | #18367