gpt4 book ai didi

java - 如何根据查询输出传递的值在 Excel 中创建多个工作表

转载 作者:行者123 更新时间:2023-11-30 04:04:48 26 4
gpt4 key购买 nike

# 我的要求是生成一个包含多个工作表的 Excel 工作簿。在此条件下,执行具有特定日期范围的查询并获取输出并将这些值传递到具有基于日期的不同工作表的 Excel 工作簿,例如:工作表 1 应仅包含日期 1 值,工作表 2 应仅包含日期 2 值,所以直到给定的日期范围。 #

## 在下面的代码中,我只实现了对选定日期范围的查询,并仅用一张表传递到 Excel 工作簿。请帮助我如何从这里继续并实现我的要求。 ##

import java.sql.*;
import java.io.File;
import java.io.FileOutputStream;
import org.apache.poi.xssf.usermodel.XSSFRow;
import org.apache.poi.xssf.usermodel.XSSFSheet;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;

public class CreateExcelFile{
public static void main(String[]args){
try{
XSSFWorkbook wb=new XSSFWorkbook();
XSSFSheet sheet = wb.createSheet("new sheet");

XSSFRow rowhead= sheet.createRow((short)0);
rowhead.createCell((short) 0).setCellValue("EMPNO");
rowhead.createCell((short) 1).setCellValue("ENAME");
rowhead.createCell((short) 2).setCellValue("JOB");
rowhead.createCell((short) 3).setCellValue("MGR");
rowhead.createCell((short) 4).setCellValue("HIREDATE");

Class.forName("oracle.jdbc.driver.OracleDriver");
Connection con = DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:orcl","scott","pass");
Statement st=con.createStatement();
ResultSet rs=st.executeQuery("SELECT * FROM emp
WHERE HIREDATE
BETWEEN TO_DATE ('1980/12/17', 'yyyy/mm/dd')AND TO_DATE ('1981/02/20','yyyy/mm/dd')");
int i=1;
while(rs.next()){
XSSFRow row= sheet.createRow((short)i);
row.createCell((short) 0).setCellValue(Integer.toString(rs.getInt("empno")));
row.createCell((short) 1).setCellValue(rs.getString("ename"));
row.createCell((short) 2).setCellValue(rs.getString("job"));
row.createCell((short) 3).setCellValue(rs.getString("mgr"));
row.createCell((short) 4).setCellValue(rs.getString("hiredate"));
i++;
}

FileOutputStream fileOut = new FileOutputStream(new File("data.xlsx"));
wb.write(fileOut);
fileOut.close();
System.out.println("Your excel file has been generated!");


} catch ( Exception ex ) {
System.out.println(ex);

}
}
}

最佳答案

首先,我将通过分离代码来获取数据并将 Excel 文件写入不同的类来更改您的应用程序设计。
其次,获得结果集后,将数据存储在 Map 中。例如。 HashMap<Date, List<DbRow>>其中 DbRow 是一个带有字段 empname 的类, ename等等。这样您就可以将数据按 hiredate 分成列表。 .
之后,检查 map 值并将每个列表中的数据添加到新工作表中。

关于java - 如何根据查询输出传递的值在 Excel 中创建多个工作表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21017171/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com