最近接到一个任务,将报表导出成word,网上搜寻了半天,最终决定利用xml来操作Word文档。
基本步骤:
- 创建word模板(注意必须将必要的格式调整好,如果第二步后再调整格式保存,那么第二步的操作就会失去作用)
- 另存为xml文件,并对xml文件清理、处理。如删去一些不必要的元素(一段文字word可能会分在不同的元素内,可以手动合并,方便后面操作),对要处理的元素加上id等属性,方便后面处理(package等元素不能加,加上后文件无法打开)。
- 克隆模板,对xml操作 使用dom4j本身遍历xml文档时不用加前缀,如:pkg:,w:. 但是使用xPath时要加上前缀。
Document document = new SAXReader().read(this.getClass().getResource("/resources/reportWordTemplate.xml"));Element root = document.getRootElement();
//填充页眉Element headPackage = (Element) root.selectSingleNode("/pkg:package/pkg:part[@pkg:name='/word/header1.xml']");Element head = headPackage.element("xmlData").element("hdr");Element productModelAndOCS = (Element) head.selectSingleNode("//w:p/w:r[@id='productModelAndOCS']/w:t");productModelAndOCS.setText(productModel + "-" + OCS);Element customerText = (Element) head.selectSingleNode("//w:p/w:r[@id='customer']/w:t");customerText.setText(customer);//填充页脚Element footPackage = (Element) root.selectSingleNode("/pkg:package/pkg:part[@pkg:name='/word/footer1.xml']");Element foot = footPackage.element("xmlData").element("ftr");Element bomElement = (Element) foot.selectSingleNode("//w:p/w:r[@id='bom']/w:t");bomElement.setText(bomNumber);//填充表格Element body = (Element) root.selectSingleNode("/pkg:package/pkg:part[@pkg:name='/word/document.xml']");Element table = body.element("xmlData").element("document").element("body").element("tbl");Element tr = (Element) table.selectSingleNode("//w:tr[@id='trtemplate']");if(tr != null){table.remove(tr);for (String[] data : datas){Element datatr = (Element) tr.clone();if(datatr.elements("tc").size() != data.length){throw new Exception("数据与模板字段数不一致!");}for (int i = 0; i < data.length; i++){Element wt = datatr.elements("tc").get(i).element("p").elements("r").get(0).element("t");wt.setText(data[i]);}table.add(datatr);}} - 保存为doc文件
ByteArrayInputStream bais = new ByteArrayInputStream(document.asXML().getBytes("utf-8"));POIFSFileSystem fs = new POIFSFileSystem();DirectoryEntry directory = fs.getRoot();directory.createDocument("WordDocument",bais);fs.writeFilesystem(os);