通过XML对Word操作

前端之家收集整理的这篇文章主要介绍了通过XML对Word操作前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
最近接到一个任务,将报表导出成word,网上搜寻了半天,最终决定利用xml来操作Word文档。
基本步骤:
  1. 创建word模板(注意必须将必要的格式调整好,如果第二步后再调整格式保存,那么第二步的操作就会失去作用)
  2. 另存为xml文件,并对xml文件清理、处理。如删去一些不必要的元素(一段文字word可能会分在不同的元素内,可以手动合并,方便后面操作),对要处理的元素加上id等属性,方便后面处理(package等元素不能加,加上文件无法打开)。
  3. 克隆模板,对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);
    }
    }
  4. 保存为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);
    最后发现导出的文件Word能够打开,而WPS打开后全是xml源码,该问题待解决
原文链接:/xml/298380.html

猜你在找的XML相关文章