Java导出Excel表格(一)

pom文件加入依赖

        <dependency>
            <groupId>net.sourceforge.jexcelapi</groupId>
            <artifactId>jxl</artifactId>
            <version>2.6.12</version>
        </dependency>

导出Excel步骤为:
1.创建工作簿
2.创建sheet页面
3.创建单元表格
4.将单元格添加到sheet页面中
5…将数据写入
6.将工作簿关闭资源

        File file = new File("d:/student.xls");
        if (!file.exists()){  //创建file对象如果文件不存在创建指定文件
            file.createNewFile();
        }

        //1.创建工作簿
        WritableWorkbook wb = Workbook.createWorkbook(file);
        //2.创建sheet页面   参数1:sheet页的名字   参数2:sheet页的索引
        WritableSheet ws = wb.createSheet("sheet0", 0);

        //3.创建单元格   第一个参数c:列   第二个参数r:行    第三个参数cont:数据
        Label label1 = new Label(0, 0, "id");
        Label label2 = new Label(1, 0, "name");
        Label label3 = new Label(2, 0, "age");

        //4.将单元格添加到sheet页面中
        ws.addCell(label1);
        ws.addCell(label2);
        ws.addCell(label3);
        //5.将数据写入
        wb.write();

        //将工作簿关闭资源
        wb.close();


以下是使用了ExcelUtils封装的导出Excel
ExcelUtils工具类

package com.example.excel.Utils;

import com.example.excel.entity.Province;
import jxl.Workbook;
import jxl.write.Label;
import jxl.write.WritableSheet;
import jxl.write.WritableWorkbook;
import jxl.write.WriteException;

import java.io.File;
import java.io.IOException;
import java.util.List;

public class ExcelUtils {

    public static void exportExcel(String filePath, List columnList,List listAll) throws IOException, WriteException {

        File file = new File(filePath);
        if (!file.exists()){  //创建file对象如果文件不存在创建指定文件
            file.createNewFile();
        }


        //1.创建工作簿
        WritableWorkbook wb = Workbook.createWorkbook(file);
        //2.创建sheet页面   参数1:sheet页的名字   参数2:sheet页的索引
        WritableSheet ws = wb.createSheet("sheet0", 0);

        //3.创建单元格   第一个参数c:列   第二个参数r:行    第三个参数cont:数据
        for (int i = 0; i <columnList.size() ; i++) {

            Label label = new Label(i, 0, (String) columnList.get(i));
            //4.将单元格添加到sheet页面中
            ws.addCell(label);
        }


        Label label1 =null;
        Label label2 =null;
        int i = 1;
        for (Object province : listAll){
            Province province1 = (Province) province;

                label1 = new Label(0,  i,province1.getId()+"");
                label2 = new Label(1, i,province1.getName());
                i++;
            ws.addCell(label1);
            ws.addCell(label2);
        }


        //5.将数据写入
        wb.write();

        //将工作簿关闭资源
        wb.close();
    }
}

mapper层

package com.example.excel.mapper;

import com.example.excel.entity.Province;

import java.util.List;

public interface ProvinceMapper {
    List<Province> findAll();

    List<String> findColumn();
}

mapper.xml

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
        PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
        "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.example.excel.mapper.ProvinceMapper">
    <select id="findAll" resultType="com.example.excel.entity.Province">
        select * from province
    </select>
    <!--查找数据库对应的字段数据-->
    <select id="findColumn" resultType="java.lang.String">
        SELECT COLUMN_NAME FROM information_schema.COLUMNS WHERE TABLE_SCHEMA = 'db1' AND TABLE_NAME = 'province';
    </select>
</mapper>

service层

package com.example.excel.service;

import com.example.excel.entity.Province;

import java.util.List;

public interface ProvinceService {
    List<Province> findAll();

    List<String> findColumn();
}

serviceImpl实现类

package com.example.excel.service.impl;

import com.example.excel.entity.Province;
import com.example.excel.mapper.ProvinceMapper;
import com.example.excel.service.ProvinceService;
import org.springframework.stereotype.Service;

import javax.annotation.Resource;
import java.util.List;

@Service
public class ProvinceServiceImpl implements ProvinceService {

    @Resource
    private ProvinceMapper provinceMapper;


    @Override
    public List<Province> findAll() {
        List<Province> all = provinceMapper.findAll();
        return all;
    }

    @Override
    public List<String> findColumn() {
        return provinceMapper.findColumn();
    }
}

controller层

package com.example.excel.controller;

import com.example.excel.Utils.ExcelUtils;
import com.example.excel.entity.Province;
import com.example.excel.service.ProvinceService;
import lombok.SneakyThrows;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;

import javax.annotation.Resource;
import java.util.List;

@Controller
@RequestMapping("/pro")
public class ProvinceController {

    @Resource
    private ProvinceService provinceService;

    @SneakyThrows
    @RequestMapping("/export")
    @ResponseBody
    public void exportExcel(){
    	//查询省份表的表字段
        List<String> column = provinceService.findColumn();
        //查找省份表的所有数据
        List<Province> all = provinceService.findAll();
        //将数据放入导出的方法中
        ExcelUtils.exportExcel("d:xin.xls", column,all);
    }
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
以下是使用Java导出Excel表格的示例代码: ```java import java.io.FileOutputStream; import java.io.IOException; import java.util.ArrayList; import java.util.List; import org.apache.poi.ss.usermodel.Cell; 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; public class ExportExcelExample { public static void main(String[] args) { // 创建工作簿 Workbook workbook = new XSSFWorkbook(); // 创建工作表 Sheet sheet = workbook.createSheet("Sheet1"); // 创建表头 Row headerRow = sheet.createRow(0); Cell headerCell1 = headerRow.createCell(0); headerCell1.setCellValue("姓名"); Cell headerCell2 = headerRow.createCell(1); headerCell2.setCellValue("年龄"); Cell headerCell3 = headerRow.createCell(2); headerCell3.setCellValue("性别"); // 填充数据 List<Person> personList = new ArrayList<>(); personList.add(new Person("张三", 20, "男")); personList.add(new Person("李四", 25, "女")); personList.add(new Person("王五", 30, "男")); int rowIndex = 1; for (Person person : personList) { Row dataRow = sheet.createRow(rowIndex++); Cell dataCell1 = dataRow.createCell(0); dataCell1.setCellValue(person.getName()); Cell dataCell2 = dataRow.createCell(1); dataCell2.setCellValue(person.getAge()); Cell dataCell3 = dataRow.createCell(2); dataCell3.setCellValue(person.getGender()); } // 导出Excel文件 try (FileOutputStream outputStream = new FileOutputStream("person.xlsx")) { workbook.write(outputStream); } catch (IOException e) { e.printStackTrace(); } } } class Person { private String name; private int age; private String gender; public Person(String name, int age, String gender) { this.name = name; this.age = age; this.gender = gender; } public String getName() { return name; } public int getAge() { return age; } public String getGender() { return gender; } } ``` 这个示例代码创建了一个包含表头和数据的Excel表格,并将其导出到名为“person.xlsx”的文件中。你可以根据需要修改表格的内容和文件名。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值