Home Jsp Poi Create Excel Sheet Using JSP



Create Excel Sheet Using JSP
Posted on: May 19, 2007 at 12:00 AM
In this example we create excel sheet and insert values into table of the excel sheet .

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.

Related Tags for Create Excel Sheet Using JSP:
cexcelormformapplicationioformatoutputtypedisplaypagecontentthissetappforexampletoexamposettydirectiveliputsplusepececontenttypeinrmmntoutplayoscaosispdirageppcatxaxampsrectspdirectatisirivmplandttssthatiapdispicaicapleplndono


More Tutorials from this section

Ask Questions?    Discuss: Create Excel Sheet Using JSP   View All Comments

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.