`

POI 导出excel

 
阅读更多
package com.bj.export.excel;



import java.io.FileOutputStream;
import java.util.HashMap;
import java.util.Map;

import org.apache.poi.hssf.usermodel.HSSFWorkbook;
import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.ss.usermodel.CellStyle;
import org.apache.poi.ss.usermodel.Font;
import org.apache.poi.ss.usermodel.IndexedColors;
import org.apache.poi.ss.usermodel.PrintSetup;
import org.apache.poi.ss.usermodel.Row;
import org.apache.poi.ss.usermodel.Sheet;
import org.apache.poi.ss.usermodel.Workbook;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;

/**
* A weekly timesheet created using Apache POI.
* @author DaiDai
*/
public class TimesheetDemo {

private static final String[] titles = {
         "ID", "栏目id", "日期", "频道", "标题", "预览地址", "类型", "作者", "PV点击量",
        
};

private static Object[][] sample_data = {
         {"Yegor Kozlov", "YK", 5.0, 8.0, 10.0, 5.0, 5.0, 7.0, 6.0},
         {"Gisella Bronzetti", "GB", 4.0, 3.0, 1.0, 3.5, null, null, 4.0},
};

public static void main(String[] args) throws Exception {
     Workbook wb;

     if(args.length > 0 && args[0].equals("-xls")) wb = new HSSFWorkbook();
     else wb = new XSSFWorkbook();

     Map<String, CellStyle> styles = createStyles(wb);

     Sheet sheet = wb.createSheet("Timesheet");
     PrintSetup printSetup = sheet.getPrintSetup();
     printSetup.setLandscape(true);
     sheet.setFitToPage(true);
     sheet.setHorizontallyCenter(true);


     //header row
     Row headerRow = sheet.createRow(0);
     headerRow.setHeightInPoints(40);
     Cell headerCell;
     for (int i = 0; i < titles.length; i++) {
         headerCell = headerRow.createCell(i);
         headerCell.setCellValue(titles[i]);
         headerCell.setCellStyle(styles.get("header"));
     }

     int rownum = 1;
     for (int i = 0; i < 10; i++) {
         Row row = sheet.createRow(rownum++);
         for (int j = 0; j < titles.length; j++) {
             Cell cell = row.createCell(j);
             cell.setCellStyle(styles.get("cell"));
         }
     }

     //row with totals below
     Row sumRow = sheet.createRow(rownum++);
     sumRow.setHeightInPoints(35);
    
    
     //set sample data
     for (int i = 0; i < sample_data.length; i++) {
         Row row = sheet.getRow(1 + i);
         for (int j = 0; j < sample_data[i].length; j++) {
             if(sample_data[i][j] == null) continue;

             if(sample_data[i][j] instanceof String) {
                 row.getCell(j).setCellValue((String)sample_data[i][j]);
             } else {
                 row.getCell(j).setCellValue((Double)sample_data[i][j]);
             }
         }
     }

     //finally set column widths, the width is measured in units of 1/256th of a character width
     sheet.setColumnWidth(0, 30*256); //30 characters wide
     for (int i = 2; i < 9; i++) {
         sheet.setColumnWidth(i, 6*256);  //6 characters wide
     }
     sheet.setColumnWidth(10, 10*256); //10 characters wide

     // Write the output to a file
     String file = "d:/Excel/timesheet.xls";
     if(wb instanceof XSSFWorkbook) file += "x";
     FileOutputStream out = new FileOutputStream(file);
     wb.write(out);
     out.close();
     System.out.println("success_success-----success");
}

/**
  * Create a library of cell styles
  */
private static Map<String, CellStyle> createStyles(Workbook wb){
     Map<String, CellStyle> styles = new HashMap<String, CellStyle>();
     CellStyle style;
     Font titleFont = wb.createFont();
     titleFont.setFontHeightInPoints((short)18);
     titleFont.setBoldweight(Font.BOLDWEIGHT_BOLD);
     style = wb.createCellStyle();
     style.setAlignment(CellStyle.ALIGN_CENTER);
     style.setVerticalAlignment(CellStyle.VERTICAL_CENTER);
     style.setFont(titleFont);
     styles.put("title", style);

     Font monthFont = wb.createFont();
     monthFont.setFontHeightInPoints((short)11);
     monthFont.setColor(IndexedColors.WHITE.getIndex());
     style = wb.createCellStyle();
     style.setAlignment(CellStyle.ALIGN_CENTER);
     style.setVerticalAlignment(CellStyle.VERTICAL_CENTER);
     style.setFillForegroundColor(IndexedColors.GREY_50_PERCENT.getIndex());
     style.setFillPattern(CellStyle.SOLID_FOREGROUND);
     style.setFont(monthFont);
     style.setWrapText(true);
     styles.put("header", style);

     style = wb.createCellStyle();
     style.setAlignment(CellStyle.ALIGN_CENTER);
     style.setWrapText(true);
     style.setBorderRight(CellStyle.BORDER_THIN);
     style.setRightBorderColor(IndexedColors.BLACK.getIndex());
     style.setBorderLeft(CellStyle.BORDER_THIN);
     style.setLeftBorderColor(IndexedColors.BLACK.getIndex());
     style.setBorderTop(CellStyle.BORDER_THIN);
     style.setTopBorderColor(IndexedColors.BLACK.getIndex());
     style.setBorderBottom(CellStyle.BORDER_THIN);
     style.setBottomBorderColor(IndexedColors.BLACK.getIndex());
     styles.put("cell", style);

     style = wb.createCellStyle();
     style.setAlignment(CellStyle.ALIGN_CENTER);
     style.setVerticalAlignment(CellStyle.VERTICAL_CENTER);
     style.setFillForegroundColor(IndexedColors.GREY_25_PERCENT.getIndex());
     style.setFillPattern(CellStyle.SOLID_FOREGROUND);
     style.setDataFormat(wb.createDataFormat().getFormat("0.00"));
     styles.put("formula", style);

     style = wb.createCellStyle();
     style.setAlignment(CellStyle.ALIGN_CENTER);
     style.setVerticalAlignment(CellStyle.VERTICAL_CENTER);
     style.setFillForegroundColor(IndexedColors.GREY_40_PERCENT.getIndex());
     style.setFillPattern(CellStyle.SOLID_FOREGROUND);
     style.setDataFormat(wb.createDataFormat().getFormat("0.00"));
     styles.put("formula_2", style);

     return styles;
}
}
  • 大小: 9.6 KB
分享到:
评论

相关推荐

    POI导出Excel文件

    以下是一个简化的示例,演示了如何使用POI导出Excel: ```java import org.apache.poi.ss.usermodel.*; import org.apache.poi.xssf.usermodel.XSSFWorkbook; import java.io.FileOutputStream; import java.io....

    java使用POI导出 Excel工具类

    java使用POI导出 Excel+图片工具类 ,里面含有poi jar包,只调用接口即可直接保存Excel。使用的时候需先把数据封装,具体包装需根据实际导出数据进行处理。文件demo中只提供包装格式。

    POI导出Excel表格

    在这个“POI导出Excel表格”的实例中,我们将深入探讨如何利用Apache POI进行Excel文件的导入与导出操作。 首先,我们需要在项目中集成Apache POI库。如果你使用的是Maven,可以在pom.xml文件中添加以下依赖: ```...

    java poi导出excel

    以上就是使用Java POI导出Excel的基本步骤。你可以根据实际需求调整代码,例如添加数据遍历、样式设置、图表生成等功能。确保正确管理资源,避免内存泄漏,特别是在服务器端处理大量数据时。记得在完成后关闭工作簿...

    poi导出excel需要的jar

    "poi导出excel需要的jar"指的是在使用Apache POI进行Excel导出时,你需要包含特定的JAR依赖文件。 首先,要实现POI导出Excel的功能,你需要下载Apache POI相关的JAR文件。这些文件通常包括以下核心组件: 1. **poi...

    apache POI 导出Excel 设置打印

    在使用Apache POI导出Excel时,首先需要创建一个`XSSFWorkbook`对象作为工作簿,然后通过工作簿创建`XSSFSheet`对象代表工作表。例如: ```java XSSFWorkbook workbook = new XSSFWorkbook(); XSSFSheet sheet =...

    Java实现POI导出Excel

    Java实现POI导出Excel是Java开发者常用的一种技术,用于生成和操作Microsoft Office Excel文件。在Java中,Apache POI库提供了对微软Office文档格式的支持,包括读取和写入Excel文件。这篇博客文章...

    java 利用poi导出EXCEL

    提供的`导出EXCEL.docx`文档可能包含了使用POI导出Excel的代码示例。这个文档通常会详细解释每一步操作,包括如何读取数据、如何设置单元格格式以及如何保存文件。 8. **依赖安装** 要使用Apache POI,你需要在...

    Java Poi 导出excel(支持各种设置字体、颜色、垂直居中)

    Java Poi 导出excel(支持各种设置字体、颜色、垂直居中)

    poi导出excel通用类

    标题“poi导出excel通用类”指的是使用Apache POI库创建一个可以用于导出Excel文件的Java类。Apache POI是开源项目,提供了一组API,使得开发者可以在Java应用程序中读写Microsoft Office格式的文件,包括Excel。在...

    JAVA POI导出EXCEL代码

    本篇文章将详细介绍如何使用JAVA POI导出Excel。 一、准备工作 在开始编写代码前,确保已经添加了Apache POI库到项目的依赖管理中。如果你使用的是Maven,可以在pom.xml文件中添加以下依赖: ```xml &lt;groupId&gt;...

    poi导出excel生成下拉列表

    poi作为导出excel常用的工具,方便快捷。对于excel指定下拉列表的列,如何生成呢?本文提供如何生成下拉列表的excel列

    poi导出excel参考方法

    POI导出Excel参考方法 POI(Poor Obfuscation Implementation)是一个Java的API,用于操作Microsoft Office文档,包括Excel、Word、PowerPoint等。下面是POI导出Excel参考方法的相关知识点: 1. POI的基本概念 ...

    POI导出Excel工具类,自动设置标题 列名 文件名,可插入图片,合并单元格

    在这个场景中,我们关注的是如何使用POI来创建一个功能丰富的Excel导出工具类,它能够自动设置标题、列名、文件名,并且支持插入图片以及合并单元格。下面将详细介绍这些功能的实现。 首先,要创建一个Excel工作簿...

    poi导出excel demo

    在本示例中,"poi导出excel demo"指的是使用Apache POI库创建和导出Excel文件的演示。这个项目可能包含了一个或多个Java源代码文件,展示了如何使用POI API来生成Excel工作簿、工作表、单元格等内容。 Apache POI ...

    Java开发案例-springboot-52-POI导出Excel-源代码+文档.rar

    Java开发案例-springboot-52-POI导出Excel-源代码+文档.rar Java开发案例-springboot-52-POI导出Excel-源代码+文档.rar Java开发案例-springboot-52-POI导出Excel-源代码+文档.rar Java开发案例-springboot-52-POI...

    POI导出Excel

    在"POI导出Excel"的场景中,我们需要创建一个Excel工作簿对象,然后在这个工作簿中添加工作表,接着向工作表中填充数据。以下是一个简单的步骤概述: 1. 引入Apache POI依赖:在项目中引入Apache POI的相关依赖库,...

    poi导出excel表格

    本教程将详细讲解如何使用Apache POI在Web环境中导出Excel表格,避免生成不必要的临时文件,从而优化系统资源管理。 一、Apache POI简介 Apache POI 是一个开源项目,它提供了Java API来处理Microsoft的Office格式...

    jxls-poi导出excel示例代码文件

    4. **导出Excel**:最后,`jxls-poi`会生成一个新的Excel文件,其中包含了从JSON数据填充后的内容。你可以选择保存到本地或者直接通过HTTP响应发送给用户下载。 具体代码示例可能如下: ```java import org.jxls....

Global site tag (gtag.js) - Google Analytics