如何使用 "xagent" 创建多个导出?
how to create multiple exports with "xagent"?
我想使用 xagent 原理使用 Apache Poi 从 Notes 视图创建导出。
但是我想创建多个导出,而不是 1 个包含多个 sheet 的导出文件,每个导出仅包含 1 个 sheet。
可能吗?例如
importPackage(java.lang);
importPackage(org.apache.poi.hssf.usermodel);
var fieldList = sessionScope.fList;
var sheetName = "viewData";
var workbookName = "WBViewData";
var vName = sessionScope.viewName;
var nc: NotesView = database.getView(vName);
var doc: NotesDocument;
var ndoc: NotesDocument;
doc = nc.getFirstDocument();
for (d = 1; d <= nc.getEntryCount(); d++) {
//Create a new workbook object from the poi library
var wb: HSSFWorkbook = new HSSFWorkbook();
//Create additional sheets using same syntax and different sheet name
var sheet1: HSSFSheet = wb.createSheet(sheetName);
//Create helper class and styles for dates
var createHelper: HSSFCreationHelper = wb.getCreationHelper();
var dateStyle: HSSFCellStyle = wb.createCellStyle();
dateStyle.setDataFormat(HSSFDataFormat.getBuiltinFormat("m/d/yy"));
var headerStyle: HSSFCellStyle = wb.createCellStyle();
var headerFont: HSSFFont = wb.createFont();
headerFont.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);
headerStyle.setFont(headerFont);
//Create the Column Header Rows
var row: HSSFRow = sheet1.createRow(0);
for (i = 0; i <= fieldList.length - 1; i++) {
var hCell: HSSFCell = row.createCell((java.lang.Integer)(i));
hCell.setCellValue(fieldList[i]);
hCell.setCellStyle(headerStyle);
}
var row: HSSFRow = sheet1.createRow(d);
// process document...
//Create the filename for the spreadsheet
var fileName = workbookName + ".xls";
// The Faces Context global object provides access to the servlet environment via the external content
var extCont = facesContext.getExternalContext();
// The servlet's response object provides control to the response object
var pageResponse = extCont.getResponse();
//Get the output stream to stream binary data
var pageOutput = pageResponse.getOutputStream();
// Set the content type and headers
pageResponse.setContentType("application/x-ms-excel");
pageResponse.setHeader("Cache-Control", "no-cache");
pageResponse.setHeader("Content-Disposition", "inline; filename=" + fileName);
//Write the output, flush the buffer and close the stream
wb.write(pageOutput);
pageOutput.flush();
pageOutput.close();
ndoc = nc.getNextDocument(doc);
doc.recycle();
doc = ndoc;
}
// Terminate the request processing lifecycle.
facesContext.responseComplete();
问题与 XPage 或 POI 无关,而是对 Web 交互工作原理的基本理解。您发送到任何服务器的每个请求都只有一个到 return 数据的流。可以使用附件 header 将该流重定向到文件。它仍然是一股流。
所以如果你想在一个流中有多个文件,你需要有一个可以容纳它的流目标。 http协议没有。一个请求产生一个响应。
然而,您可以做的是将您的个人文件写入一个 zip 文件,然后 return 将那个文件写入请求。
更新
但是您真正想做的是:让您的服务器端准备好根据查询字符串一次创建一个 xls。然后在您想要获取文件的页面中,您分别对每个文件使用 ajax 请求,并使用 html5 文件 api 在本地写回结果。因此,与其尝试在服务器上解决此问题,不如将客户端放在 driver 的位置上。在那里你可以显示动画,对每次完成做出反应等。
我想使用 xagent 原理使用 Apache Poi 从 Notes 视图创建导出。
但是我想创建多个导出,而不是 1 个包含多个 sheet 的导出文件,每个导出仅包含 1 个 sheet。
可能吗?例如
importPackage(java.lang);
importPackage(org.apache.poi.hssf.usermodel);
var fieldList = sessionScope.fList;
var sheetName = "viewData";
var workbookName = "WBViewData";
var vName = sessionScope.viewName;
var nc: NotesView = database.getView(vName);
var doc: NotesDocument;
var ndoc: NotesDocument;
doc = nc.getFirstDocument();
for (d = 1; d <= nc.getEntryCount(); d++) {
//Create a new workbook object from the poi library
var wb: HSSFWorkbook = new HSSFWorkbook();
//Create additional sheets using same syntax and different sheet name
var sheet1: HSSFSheet = wb.createSheet(sheetName);
//Create helper class and styles for dates
var createHelper: HSSFCreationHelper = wb.getCreationHelper();
var dateStyle: HSSFCellStyle = wb.createCellStyle();
dateStyle.setDataFormat(HSSFDataFormat.getBuiltinFormat("m/d/yy"));
var headerStyle: HSSFCellStyle = wb.createCellStyle();
var headerFont: HSSFFont = wb.createFont();
headerFont.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);
headerStyle.setFont(headerFont);
//Create the Column Header Rows
var row: HSSFRow = sheet1.createRow(0);
for (i = 0; i <= fieldList.length - 1; i++) {
var hCell: HSSFCell = row.createCell((java.lang.Integer)(i));
hCell.setCellValue(fieldList[i]);
hCell.setCellStyle(headerStyle);
}
var row: HSSFRow = sheet1.createRow(d);
// process document...
//Create the filename for the spreadsheet
var fileName = workbookName + ".xls";
// The Faces Context global object provides access to the servlet environment via the external content
var extCont = facesContext.getExternalContext();
// The servlet's response object provides control to the response object
var pageResponse = extCont.getResponse();
//Get the output stream to stream binary data
var pageOutput = pageResponse.getOutputStream();
// Set the content type and headers
pageResponse.setContentType("application/x-ms-excel");
pageResponse.setHeader("Cache-Control", "no-cache");
pageResponse.setHeader("Content-Disposition", "inline; filename=" + fileName);
//Write the output, flush the buffer and close the stream
wb.write(pageOutput);
pageOutput.flush();
pageOutput.close();
ndoc = nc.getNextDocument(doc);
doc.recycle();
doc = ndoc;
}
// Terminate the request processing lifecycle.
facesContext.responseComplete();
问题与 XPage 或 POI 无关,而是对 Web 交互工作原理的基本理解。您发送到任何服务器的每个请求都只有一个到 return 数据的流。可以使用附件 header 将该流重定向到文件。它仍然是一股流。 所以如果你想在一个流中有多个文件,你需要有一个可以容纳它的流目标。 http协议没有。一个请求产生一个响应。 然而,您可以做的是将您的个人文件写入一个 zip 文件,然后 return 将那个文件写入请求。
更新 但是您真正想做的是:让您的服务器端准备好根据查询字符串一次创建一个 xls。然后在您想要获取文件的页面中,您分别对每个文件使用 ajax 请求,并使用 html5 文件 api 在本地写回结果。因此,与其尝试在服务器上解决此问题,不如将客户端放在 driver 的位置上。在那里你可以显示动画,对每次完成做出反应等。