您的位置:首页 > 编程语言 > Java开发

java导出Excel表格

2014-12-24 15:24 253 查看
使用POI来导出Excel表格。具体代码如下所示:

首先从数据库中的到需要导出的数据,这里手动写一个对象集合。方法如下:

private static List<Student> getStudent() throws Exception  

    {

        List<Student> list = new ArrayList<Student>();  

        SimpleDateFormat df = new SimpleDateFormat("yyyy-mm-dd");  

  

        Student user1 = new Student(1, "张三", 16, df.parse("1997-03-12"));  

        Student user2 = new Student(2, "李四", 17, df.parse("1996-08-12"));  

        Student user3 = new Student(3, "王五", 26, df.parse("1985-11-12"));  

        list.add(user1);  

        list.add(user2);  

        list.add(user3);  

  

        return list;  

    }

然后生成Excel表格:

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

    // 第一步,创建一个webbook,对应一个Excel文件  

        HSSFWorkbook wb = new HSSFWorkbook();  

        // 第二步,在webbook中添加一个sheet,对应Excel文件中的sheet  

        HSSFSheet sheet = wb.createSheet("学生表一");  

        // 第三步,在sheet中添加表头第0行,注意老版本poi对Excel的行数列数有限制short  

        HSSFRow row = sheet.createRow((int) 0);  

        // 第四步,创建单元格,并设置值表头 设置表头居中  

        HSSFCellStyle style = wb.createCellStyle();  

        style.setAlignment(HSSFCellStyle.ALIGN_CENTER); // 创建一个居中格式  

  

        HSSFCell cell = row.createCell(0);

        cell.setCellValue("学号");  

        cell.setCellStyle(style);  

        cell = row.createCell(1);  

        cell.setCellValue("姓名");  

        cell.setCellStyle(style);  

        cell = row.createCell(2);  

        cell.setCellValue("年龄");  

        cell.setCellStyle(style);  

        cell = row.createCell(3);  

        cell.setCellValue("生日");  

        cell.setCellStyle(style);  

  

        // 第五步,写入实体数据 实际应用中这些数据从数据库得到,  

        List<Student> list = CreateSimpleExcelToDisk.getStudent();

        for (int i = 0; i < list.size(); i++)  

        {  

            row = sheet.createRow((int) i + 1);  

            Student stu = (Student) list.get(i);  

            // 第四步,创建单元格,并设置值  

            row.createCell(0).setCellValue((double) stu.getId());  

            row.createCell(1).setCellValue(stu.getName());  

            row.createCell(2).setCellValue((double) stu.getAge());  

            cell = row.createCell(3);  

            cell.setCellValue(new SimpleDateFormat("yyyy-mm-dd").format(stu.getTimeDate()));  

        }  

        // 第六步,将文件存到指定位置  

        try  

        {  

            FileOutputStream fout = new FileOutputStream("E:/students.xls");  

            wb.write(fout);  

            fout.close();  

        }  

        catch (Exception e)  

        {  

            e.printStackTrace();  

        }  

    }  
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  Excel Java