java导出xlsx_java导出xlsx文件

/** To change this license header, choose License Headers in Project Properties.

* To change this template file, choose Tools | Templates

* and open the template in the editor.*/

packagecom.ndkey.am.statistics.portal;importcom.ndkey.am.tenant.TenantId;importcom.ndkey.exception.DkRuntimeException;importcom.ndkey.utils.RandomString;importjava.io.File;importjava.io.IOException;importjava.io.InputStream;importjava.io.OutputStream;importjava.util.Calendar;importjava.util.List;importorg.apache.commons.io.FileUtils;importorg.apache.commons.lang3.time.DateFormatUtils;importorg.apache.poi.openxml4j.exceptions.InvalidFormatException;importorg.apache.poi.openxml4j.opc.OPCPackage;importorg.apache.poi.ss.usermodel.Cell;importorg.apache.poi.xssf.usermodel.XSSFRow;importorg.apache.poi.xssf.usermodel.XSSFSheet;importorg.apache.poi.xssf.usermodel.XSSFWorkbook;importorg.springframework.transaction.annotation.Transactional;/***

*@authortino*/@Transactionalpublic classUserPortalStatisticExportService {privateUserPortalStatisticService userPortalStatisticService;private static final String DATE_FORMAT = "yyyy-MM-dd' 'HH:mm:ss";private final static int TIME_INDEX = 0;private final static int TENANT_NAME_INDEX = 1;private final static int LOGIN_NAME_INDEX = 2;private final static int MOBILE_INDEX = 3;private final static int WEIXIN_OPEN_ID_INDEX = 4;private final static int FIRST_LOGIN_TIME_INDEX = 5;private final static int LAST_LOGOUT_TIME_INDEX = 6;private final static int ACCESS_DURATION_INDEX = 7;private final static int STAY_DURATION_INDEX = 8;private final static int FLOW_IN_BYTES_INDEX = 9;privateString generateFileName() {return RandomString.getRandomString("qazwsxedcrfvtgbyhnujmikl1234567890", 6);

}

@Transactionalpublic void exportDailyRecords(TenantId tenantId, Calendar from, Calendar to, OutputStream os) throwsIOException {

List records = userPortalStatisticService.getUserDailyRecords(tenantId.getId(), from, to, 0, Integer.MAX_VALUE);this.exportDailyRecords(records, os);

}

@Transactionalpublic void exportDailyRecords(Calendar from, Calendar to, OutputStream os) throwsIOException {

List records = userPortalStatisticService.getUserDailyRecords(from, to, 0, Integer.MAX_VALUE);this.exportDailyRecords(records, os);

}public void exportDailyRecords(List records, OutputStream os) throwsIOException {

String tempPath=FileUtils.getTempDirectoryPath();

String templatePath= "META-INF/com/ndkey/am/res/report/template_user_daily.xlsx";

File excelFile= new File(tempPath + "/" + generateFileName() + ".xlsx");try (InputStream inStream = this.getClass().getClassLoader().getResourceAsStream(templatePath)) {

FileUtils.copyInputStreamToFile(inStream, excelFile);

XSSFWorkbook wb;try (OPCPackage opk =OPCPackage.open(excelFile)) {

wb= newXSSFWorkbook(opk);

XSSFSheet sheet= wb.getSheetAt(0);int maxRowNum =sheet.getLastRowNum();

XSSFRow row= null;for (int i = 3; i < maxRowNum; i++) {

row=sheet.getRow(i);if (row != null) {

sheet.removeRow(row);

}

}int i = 3;for(UserDailyRecordInfo record : records) {

row=sheet.createRow(i);

row.createCell(TIME_INDEX, Cell.CELL_TYPE_STRING).setCellValue(DateFormatUtils.format(record.getTime(), DATE_FORMAT));

row.createCell(TENANT_NAME_INDEX, Cell.CELL_TYPE_STRING).setCellValue(record.getTenantName());

row.createCell(LOGIN_NAME_INDEX, Cell.CELL_TYPE_STRING).setCellValue(record.getLoginName());

row.createCell(MOBILE_INDEX, Cell.CELL_TYPE_STRING).setCellValue(record.getMobile());

row.createCell(WEIXIN_OPEN_ID_INDEX, Cell.CELL_TYPE_STRING).setCellValue(record.getWeixinOpenId());

row.createCell(FIRST_LOGIN_TIME_INDEX, Cell.CELL_TYPE_STRING).setCellValue(DateFormatUtils.format(record.getFirstLoginTime(), DATE_FORMAT));

row.createCell(LAST_LOGOUT_TIME_INDEX, Cell.CELL_TYPE_STRING).setCellValue(DateFormatUtils.format(record.getLastLogoutTime(), DATE_FORMAT));

row.createCell(ACCESS_DURATION_INDEX, Cell.CELL_TYPE_STRING).setCellValue(record.getAccessDuration()/ 60);

row.createCell(STAY_DURATION_INDEX, Cell.CELL_TYPE_STRING).setCellValue(record.getStayDuration()/ 60);

row.createCell(FLOW_IN_BYTES_INDEX, Cell.CELL_TYPE_STRING).setCellValue(record.getFlowInBytes()/ (1024 * 1024));

i++;

}

wb.write(os);

}catch(InvalidFormatException ex) {throw newDkRuntimeException(ex);

}finally{

FileUtils.forceDelete(excelFile);

}

}

}public voidsetUserPortalStatisticService(UserPortalStatisticService userPortalStatisticService) {this.userPortalStatisticService =userPortalStatisticService;

}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值