WELCOME

for any suggestion's please mail to this id:

nanduriraja537@gmail.com,raja.mic539@gmail.com

Wednesday, July 17, 2013

Create Xls using Java

Hi Viewers,

Using PIO a third party tool which help us to create .xls  files


  import  java.io.*;
    import  org.apache.poi.hssf.usermodel.HSSFSheet;
    import  org.apache.poi.hssf.usermodel.HSSFWorkbook;
    import  org.apache.poi.hssf.usermodel.HSSFRow;
    import  org.apache.poi.hssf.usermodel.HSSFCell;

    public class CreateExlFile{
         public static void main(String[]args){
        try{
        String filename="C:/Sample.xls" ;
        HSSFWorkbook workbook=new HSSFWorkbook();
        HSSFSheet sheet =  workbook.createSheet("FirstSheet"); 

        HSSFRow rowhead=   sheet.createRow((short)0);
        rowhead.createCell((short) 0).setCellValue("No.");
        rowhead.createCell((short) 1).setCellValue("Name");
        rowhead.createCell((short) 2).setCellValue("Address");
        rowhead.createCell((short) 3).setCellValue("Email");

        HSSFRow row=   sheet.createRow((short)1);
        row.createCell((short) 0).setCellValue("1");
        row.createCell((short) 1).setCellValue("raja");
        row.createCell((short) 2).setCellValue("India");
        row.createCell((short) 3).setCellValue("nanduriraja537@gmail.com");

        FileOutputStream fileOut =  new FileOutputStream(filename);
        workbook.write(fileOut);
        fileOut.close();
        System.out.println("Your excel file has been generated!");

        } catch ( Exception ex ) {
            System.out.println(ex);

        }
           }
       }

1 comment:

  1. Every ecommerce developers should concentrate on make a effective functionality for ecommerce websites.This would be good responsibility to them.
    Web Design Company | Website Design Company

    ReplyDelete

LinkWithin

Related Posts Plugin for WordPress, Blogger...