Package excel.adddatatocells

Source Code of excel.adddatatocells.ApacheInsertCellsData

package excel.adddatatocells;

import java.io.FileOutputStream;

import org.apache.poi.hssf.usermodel.HSSFWorkbook;
import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.ss.usermodel.CreationHelper;
import org.apache.poi.ss.usermodel.Row;
import org.apache.poi.ss.usermodel.Sheet;
import org.apache.poi.ss.usermodel.Workbook;

public class ApacheInsertCellsData
{
  public static void main(String[] args) throws Exception
  {
    Workbook wb = new HSSFWorkbook();
   
    CreationHelper createHelper = wb.getCreationHelper();
    Sheet sheet = wb.createSheet("new sheet");
   
    // Create a row and put some cells in it. Rows are 0 based.
    Row row = sheet.createRow((short)0);
    // Create a cell and put a value in it.
    Cell cell = row.createCell(0);
    cell.setCellValue(1);
   
    // Or do it on one line.
    row.createCell(1).setCellValue(1.2);
    row.createCell(2).setCellValue(
    createHelper.createRichTextString("This is a string"));
    row.createCell(3).setCellValue(true);
   
    // Write the output to a file
    FileOutputStream fileOut = new FileOutputStream("data/DataInCells_Apache.xls");
    wb.write(fileOut);
    fileOut.close();
  }
}
TOP

Related Classes of excel.adddatatocells.ApacheInsertCellsData

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.