Core Java| JSP| Servlets| XML| EJB| JEE5| Web Services| J2ME| Glossary| Questions?

 

 

 

 

 

 

 

 

 

 

 

 

 

Search Tutorials

Latest Questions
Comments
 
Create Excel Sheet Using JSP 
 

In this program, we are going to create the cells and rows into excel sheet using java .

 

create excel sheet using jsp

                         

In this program, we are going to create the cells and rows into excel sheet using java .You can create any number of cells and rows and also you can add values into cells.

The package we need to import is
java.io.*,
org.apache.poi.hssf.usermodel.HSSFSheet,
org.apache.poi.hssf.usermodel.HSSFCell,
org.apache.poi.hssf.usermodel.HSSFRow,
org.apache.poi.hssf.usermodel. HSSFWorkbook.


The org.apache.poi.hssf.usermodel.HSSFRow class is used to create a row  in which we can set the cells. 

The org.apache.poi.hssf.usermodel.HSSFCell class is used to create a new cell and add the values into cells.

createRow((short)value):
This method is used to create  a new row. The argument "value" (short type) is the number for which we are going to create
the row e.g. createRow((short)0) is for creating 0th row.

createCell((short)value):
This method is used to create a new cell. The argument "value" (short type) is the number for which we are going to create the new cell  e.g. createCell((short)0) is for creating 0th cell.

setCellValue(values):
This method is used to add the value into the cell. You can add any data types into cell by using this method. In this example, we have used four data types int , float , string and boolean which are being added at 0th ,1st,2nd,3th  and 4th cells  into 0th row.

The code of the program is given below:


<%page import="org.apache.poi.hssf.usermodel.HSSFSheet"%>
<%page import="org.apache.poi.hssf.usermodel.HSSFWorkbook"%>
<%page import="org.apache.poi.hssf.usermodel.HSSFCell"%>
<%
page import="org.apache.poi.hssf.usermodel.HSSFRow"%>
<%page import="java.io.*" %>
<%try{
   HSSFWorkbook wb = new HSSFWorkbook();
   HSSFSheet sheet = wb.createSheet("new sheet");
   HSSFRow row = sheet.createRow((short)0);
   HSSFCell cell = row.createCell((short)0);
   cell.setCellValue(1);
   row.createCell((short)1).setCellValue(1.2);
   row.createCell((short)2).setCellValue("Rajesh Kumar ");
   row.createCell((short)3).setCellValue(true);
    FileOutputStream fileOut = new FileOutputStream
(
"c:\\excel\\createCell.xls");
    wb.write(fileOut);
    fileOut.close();       
        }catch Exception ex ){       
        }     
%>

The output of the program is given below:

Download this example.

                         

» View all related tutorials
Related Tags: java c excel apache script import model setup io client method user print arguments type ip port sets anchor cli

Leave your comment:

Name:

Email:

URL:

Title:

Comments:


Enter Code:

Audio Version
Reload Image
 

Note: Emails will not be visible or used in any way, and are not required. Please keep comments relevant. Any content deemed inappropriate or offensive may be edited and/or deleted.

No HTML code is allowed. Line breaks will be converted automatically. URLs will be auto-linked. Please use BBCode to format your text.

Add This Tutorial To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 

Current Comments

1 comments so far (
post your own) View All Comments Latest 10 Comments:

Hi,

I used POI as specified in the example. It is opening the Excel sheet, but there is no data in there.

Posted by su on Thursday, 10.18.07 @ 01:10am | #34304

Training Courses
Tell A Friend
Your Friend Name
Software Solutions
Least Viewed
Most Rated
Recently Viewed
Search Tutorials

 

 
 

Home | JSP | EJB | JDBC | Java Servlets | WAP  | Free JSP Hosting  | Search Engine | News Archive | Jboss 3.0 tutorial | Free Linux CD's | Forum | Blogs

About Us | Advertising On RoseIndia.net  | Site Map

India News

Indian Software Development Company | iPhone Development Company in India | Flex Development Company in India | Java Training Delhi | Java Training at Noida |

Send your comments, Suggestions or Queries regarding this site at roseindia_net@yahoo.com.

Copyright © 2008. All rights reserved.