首页
学习
活动
专区
圈层
工具
发布
社区首页 >专栏 >java生成excel表格并添加数据

java生成excel表格并添加数据

作者头像
思念是荒芜的梦
发布2026-01-09 13:01:16
发布2026-01-09 13:01:16
1120
举报

java生成excel表格,需要引入3个包、如需要可以点击下载链接免费的:

http://download.csdn.net/detail/g631521612/5307175

现在开始写类

代码语言:javascript
复制
代码语言:javascript
复制
package ccut;
import java.io.FileOutputStream;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.List;

import org.apache.poi.hssf.usermodel.HSSFCell;
import org.apache.poi.hssf.usermodel.HSSFCellStyle;
import org.apache.poi.hssf.usermodel.HSSFRow;
import org.apache.poi.hssf.usermodel.HSSFSheet;
import org.apache.poi.hssf.usermodel.HSSFWorkbook;
public class Excel
{
/**
     * @功能:手工构建一个简单格式的Excel
     */
    private static List<Student> getStudent() throws Exception
    {
        List list = new ArrayList();

        Student user1 = new Student(1, "张三", 16, "1997-03-12");
        Student user2 = new Student(2, "李四", 17, "1996-08-12");
        Student user3 = new Student(3, "王五", 26, "1985-11-12");
        list.add(user1);
        list.add(user2);
        list.add(user3);

        return list;
    }
    public static void main(String[] args) throws Exception
    {
        // 第一步,创建一个webbook,对应一个Excel文件
        HSSFWorkbook hwb = new HSSFWorkbook();
        // 第二步,在webbook中添加一个sheet,对应Excel文件中的sheet
        HSSFSheet sheet = hwb.createSheet("表一");
        // 第三步,在sheet中添加表头第0行
        HSSFRow row = sheet.createRow((int) 0);
        // 第四步,创建单元格,并设置值表头 设置表头居中
        HSSFCellStyle style = hwb.createCellStyle();
        style.setAlignment(HSSFCellStyle.ALIGN_CENTER); // 创建一个居中格式

        HSSFCell cell = row.createCell((short) 0);
        cell.setCellValue("学号");
        cell.setCellStyle(style);
        cell = row.createCell((short) 1);
        cell.setCellValue("姓名");
        cell.setCellStyle(style);
        cell = row.createCell((short) 2);
        cell.setCellValue("年龄");
        cell.setCellStyle(style);
        cell = row.createCell((short) 3);
        cell.setCellValue("生日");
        cell.setCellStyle(style);

        // 第五步,写入实体数据 实际应用中这些数据从数据库得到,
        List list = Excel.getStudent();

        for (int i = 0; i < list.size(); i++)
        {
            row = sheet.createRow((int) i + 1);
            Student stu = (Student) list.get(i);
            // 第四步,创建单元格,并设置值
            row.createCell((short) 0).setCellValue((double) stu.getId());
            row.createCell((short) 1).setCellValue(stu.getName());
            row.createCell((short) 2).setCellValue((double) stu.getAge());
            row.createCell((short) 3).setCellValue(stu.getBirthday());
        }
        // 第六步,将文件存到指定位置
        try
        {
            FileOutputStream fout = new FileOutputStream("E:/students.xls");
            hwb.write(fout);
            fout.close();
            
        }
        catch (Exception e)
        {
            e.printStackTrace();
        }
    }
}

当然这里还存在一个关于student的po类,这里无非是4个字段的getset方法, 这里就不详细写了。

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2026-01-09,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档