Create Excel Sheet Using JSP

In this example we create excel sheet and insert values into table of the excel sheet .

Create Excel Sheet Using JSP

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.