jxl을 이용하여 자바 프로그램에서 데이터를 excel로 내보내는 예
1909 단어 Excel
public String showDetail() throws Exception {
//
SysUsers loginUser = (SysUsers) session.get("loginUser");
String queryScope = loginUser.getQueryScope();
String[] orgScope = queryScope.split(",");
Map map = new HashMap();
map.put("orgScope", orgScope);
map.put("mobtypeid", mobtypeid);
//
detailList = dao.queryList("mobStock.getDetail", map);
// excel
if ("excel".equals(detailType)) {
OutputStream os = response.getOutputStream(); //
response.setHeader("Content-disposition", "attachment; filename=detail.xls");//
response.setContentType("application/msexcel"); //
WritableWorkbook wb = Workbook.createWorkbook(os); // excel
WritableSheet sheet = wb.createSheet("detail", 0); // sheet
sheet.addCell(new Label(0, 0, " "));
sheet.addCell(new Label(1, 0, " "));
sheet.addCell(new Label(2, 0, " "));
sheet.addCell(new Label(3, 0, " "));
Iterator<StoMobstock> detailIterator = detailList.iterator();
int rowNo = 1;
while (detailIterator.hasNext()) {
StoMobstock mobstock = detailIterator.next();
sheet.addCell(new Label(0, rowNo, mobstock.getMobtypeid()));
sheet.addCell(new Label(1, rowNo, mobstock.getSn1()));
sheet.addCell(new Label(2, rowNo, mobstock.getSn2()));
sheet.addCell(new Number(3, rowNo, mobstock.getBuyprice()
.doubleValue(), new WritableCellFormat(
new NumberFormat("#,###.00")))); //
rowNo++;
}
wb.write();
wb.close();
return null;
} else {
return "detail";
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Excel Grep toolExcel Grep tool ■히나가타 ■ 시트 구성 ExcelGrep.cls...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.