easypoi导出word表格

如果遇到poi读取例如{name}不能识别为一个整体,可以使用word的域操作,如果不太清楚域的使用,可以这么操作,先在text文档中写好,例如{name},然后再整个复制到word中,不要一个一个在word中敲,不然有可能不会被poi识别为一个整体
XWPFDocument对象
POI是apache提供的可以操作word文档的第三方jar 。POI能操作word是使用XWPFDocument对象 。
XWPFDocument对象可以解析docx文件,在XWPFDocument对象通过输入流解析docx的时候,会获取到docx文档中的各种对象,例如表格,段落,图片等,通过操作XWPFDocument对象就可以修改模板内容XWPFDocument API结构org.apache.poi.xwpf.usermodel.XWPFDocumentXWPFDocument 提供write(OutputStream stream)方法将修改后的对象重新写入xml并生成新的docx
通过XWPFDocument 可以获得的docx中的各种对象

要具体操作通过XWPFDocument 可以获得的docx中的各种对象,我们离不开一个对象为XWPFRun对象,API结构org.apache.poi.xwpf.usermodel.XWPFRun 。其描述为:XWPFRun object defines a region of text with a common set of properties 。通过描述我们不难理解其作用为设置文本对象的各种属性 。
通过XWPFDocument 获取对象
//解析docx模板并获取document对象XWPFDocument document = new XWPFDocument(POIXMLDocument.openPackage(inputUrl));//获取整个文本对象List<XWPFParagraph> allParagraph = document.getParagraphs();//获取整个表格对象List<XWPFTable> allTable = document.getTables();//获取图片对象XWPFPictureData pic = document.getPictureDataByID("PICId");首先建一个很简单的word模板001.docx,我们通过操作对象获取word中的文本内容
下面demo的输出可以看出我们操作文本对象,成功获取了文本内容
@Component("xWPRUNTest")public class XWPRUNTest {//模板文件地址private static String inputUrl = "C:\Users\zhihe\Desktop\demo\001.docx";public void runTest(){try {//解析docx模板并获取document对象XWPFDocument document = new XWPFDocument(POIXMLDocument.openPackage(inputUrl));//获取整个文本对象List<XWPFParagraph> allParagraph = document.getParagraphs();//获取XWPFRun对象输出整个文本内容StringBuffer tempText = new StringBuffer();for (XWPFParagraph xwpfParagraph : allParagraph) {List<XWPFRun> runList = xwpfParagraph.getRuns();for (XWPFRun xwpfRun : runList) {tempText.append(xwpfRun.toString());}}System.out.println(tempText.toString());} catch (IOException e) {// TODO Auto-generated catch blocke.printStackTrace();}}}测试
@RunWith(SpringJUnit4ClassRunner.class)@ContextConfiguration("classpath:applicationContext.xml")public class runTest {@Resourceprivate XWPRUNTest xWPRUNTest;@Testpublic void runTest(){xWPRUNTest.runTest();}}控制台输出结果
在这里发现操作文本对象的时候并没有获取到表格文本,所以如果我们需要获取到表格文本还需要另外的操作
@Component("xWPRUNTableTest")public class XWPRUNTableTest {//模板文件地址private static String inputUrl = "C:\Users\zhihe\Desktop\demo\001.docx";public void tableTest(){try {StringBuffer tableText = new StringBuffer();//解析docx模板并获取document对象XWPFDocument document = new XWPFDocument(POIXMLDocument.openPackage(inputUrl));//获取全部表格对象List<XWPFTable> allTable = document.getTables();for (XWPFTable xwpfTable : allTable) {//获取表格行数据List<XWPFTableRow> rows = xwpfTable.getRows();for (XWPFTableRow xwpfTableRow : rows) {//获取表格单元格数据List<XWPFTableCell> cells = xwpfTableRow.getTableCells();for (XWPFTableCell xwpfTableCell : cells) {List<XWPFParagraph> paragraphs = xwpfTableCell.getParagraphs();for (XWPFParagraph xwpfParagraph : paragraphs) {List<XWPFRun> runs = xwpfParagraph.getRuns();for(int i = 0; i < runs.size();i++){XWPFRun run = runs.get(i);tableText.append(run.toString());}}}}}System.out.println(tableText.toString());} catch (IOException e) {// TODO Auto-generated catch blocke.printStackTrace();}}}测试成功获取表格
下面我们来对一个wrod进行简单的修改,首先有个模板word,里面只有几个字
代码
public class FirstWordTest {//模板文件地址private static String inputUrl = "C:\Users\zhihe\Desktop\demo\001.docx";//新生产的模板文件private static String outputUrl = "C:\Users\zhihe\Desktop\demo\test.docx";/**** @param inputUrl 模板路径* @param outputUrl 模板保存路径*/public static void changeWord(String inputUrl, String outputUrl ){try {//获取word文档解析对象XWPFDocument doucument = new XWPFDocument(POIXMLDocument.openPackage(inputUrl));//获取段落文本对象List<XWPFParagraph> paragraph = doucument.getParagraphs();//获取首行run对象XWPFRun run = paragraph.get(0).getRuns().get(0);//设置文本内容run.setText("修改了的word");//生成新的wordFile file = new File(outputUrl);FileOutputStream stream = new FileOutputStream(file);doucument.write(stream);stream.close();} catch (IOException e) {// TODO Auto-generated catch blocke.printStackTrace();}}public static void main(String[] args) {changeWord(inputUrl,outputUrl);}}测试运行后生成新的word
但是在实际项目中并没有这么简单,模板文档中可能需要替换文本中的文字,也可能需要替换表格对象中的文字,或者在指定表格中插入数据,下面我们就仿照实际情况来做个简单的模板 。
首先创建一个word的模板
工具类
package com.lovo.utils.wordToPdf;import java.io.File;import java.io.FileOutputStream;import java.io.IOException;import java.util.ArrayList;import java.util.HashMap;import java.util.List;import java.util.Map;import java.util.Map.Entry;import java.util.Set;import org.apache.poi.POIXMLDocument;import org.apache.poi.xwpf.usermodel.XWPFDocument;import org.apache.poi.xwpf.usermodel.XWPFParagraph;import org.apache.poi.xwpf.usermodel.XWPFRun;import org.apache.poi.xwpf.usermodel.XWPFTable;import org.apache.poi.xwpf.usermodel.XWPFTableCell;import org.apache.poi.xwpf.usermodel.XWPFTableRow;/** * 通过word模板生成新的word工具类 ** @author zhiheng **/public class WorderToNewWordUtils {/*** 根据模板生成新word文档* 判断表格是需要替换还是需要插入,判断逻辑有$为替换,表格无$为插入* @param inputUrl 模板存放地址* @param outPutUrl 新文档存放地址* @param textMap 需要替换的信息集合* @param tableList 需要插入的表格信息集合* @return 成功返回true,失败返回false*/public static boolean changWord(String inputUrl, String outputUrl,Map<String, String> textMap, List<String[]> tableList) {//模板转换默认成功boolean changeFlag = true;try {//获取docx解析对象XWPFDocument document = new XWPFDocument(POIXMLDocument.openPackage(inputUrl));//解析替换文本段落对象WorderToNewWordUtils.changeText(document, textMap);//解析替换表格对象WorderToNewWordUtils.changeTable(document, textMap, tableList);//生成新的wordFile file = new File(outputUrl);FileOutputStream stream = new FileOutputStream(file);document.write(stream);stream.close();} catch (IOException e) {e.printStackTrace();changeFlag = false;}return changeFlag;}/*** 替换段落文本* @param document docx解析对象* @param textMap 需要替换的信息集合*/public static void changeText(XWPFDocument document, Map<String, String> textMap){//获取段落集合List<XWPFParagraph> paragraphs = document.getParagraphs();for (XWPFParagraph paragraph : paragraphs) {//判断此段落时候需要进行替换String text = paragraph.getText();if(checkText(text)){List<XWPFRun> runs = paragraph.getRuns();for (XWPFRun run : runs) {//替换模板原来位置run.setText(changeValue(run.toString(), textMap),0);}}}}/*** 替换表格对象方法* @param document docx解析对象* @param textMap 需要替换的信息集合* @param tableList 需要插入的表格信息集合*/public static void changeTable(XWPFDocument document, Map<String, String> textMap,List<String[]> tableList){//获取表格对象集合List<XWPFTable> tables = document.getTables();for (int i = 0; i < tables.size(); i++) {//只处理行数大于等于2的表格,且不循环表头XWPFTable table = tables.get(i);if(table.getRows().size()>1){//判断表格是需要替换还是需要插入,判断逻辑有$为替换,表格无$为插入if(checkText(table.getText())){List<XWPFTableRow> rows = table.getRows();//遍历表格,并替换模板eachTable(rows, textMap);}else{//System.out.println("插入"+table.getText());insertTable(table, tableList);}}}}/*** 遍历表格* @param rows 表格行对象* @param textMap 需要替换的信息集合*/public static void eachTable(List<XWPFTableRow> rows ,Map<String, String> textMap){for (XWPFTableRow row : rows) {List<XWPFTableCell> cells = row.getTableCells();for (XWPFTableCell cell : cells) {//判断单元格是否需要替换if(checkText(cell.getText())){List<XWPFParagraph> paragraphs = cell.getParagraphs();for (XWPFParagraph paragraph : paragraphs) {List<XWPFRun> runs = paragraph.getRuns();for (XWPFRun run : runs) {run.setText(changeValue(run.toString(), textMap),0);}}}}}}/*** 为表格插入数据,行数不够添加新行* @param table 需要插入数据的表格* @param tableList 插入数据集合*/public static void insertTable(XWPFTable table, List<String[]> tableList){//创建行,根据需要插入的数据添加新行,不处理表头for(int i = 1; i < tableList.size(); i++){XWPFTableRow row =table.createRow();}//遍历表格插入数据List<XWPFTableRow> rows = table.getRows();for(int i = 1; i < rows.size(); i++){XWPFTableRow newRow = table.getRow(i);List<XWPFTableCell> cells = newRow.getTableCells();for(int j = 0; j < cells.size(); j++){XWPFTableCell cell = cells.get(j);cell.setText(tableList.get(i-1)[j]);}}}/*** 判断文本中时候包含$* @param text 文本* @return 包含返回true,不包含返回false*/public static boolean checkText(String text){boolean check=false;if(text.indexOf("$")!= -1){check = true;}return check;}/*** 匹配传入信息集合与模板* @param value 模板需要替换的区域* @param textMap 传入信息集合* @return 模板需要替换区域信息集合对应值*/public static String changeValue(String value, Map<String, String> textMap){Set<Entry<String, String>> textSets = textMap.entrySet();for (Entry<String, String> textSet : textSets) {//匹配模板与替换值 格式${key}String key = "${"+textSet.getKey()+"}";if(value.indexOf(key)!= -1){value = http://www.mnbkw.com/jxjc/168007/textSet.getValue();}}//模板未匹配到区域替换为空if(checkText(value)){value ="";}return value;}public static void main(String[] args) {//模板文件地址String inputUrl = "C:\Users\zhihe\Desktop\demo\001.docx";//新生产的模板文件String outputUrl = "C:\Users\zhihe\Desktop\demo\test.docx";Map<String, String> testMap = new HashMap<String, String>();testMap.put("name", "小明");testMap.put("sex", "男");testMap.put("address", "软件园");testMap.put("phone", "88888888");List<String[]> testList = new ArrayList<String[]>();testList.add(new String[]{"1","1AA","1BB","1CC"});testList.add(new String[]{"2","2AA","2BB","2CC"});testList.add(new String[]{"3","3AA","3BB","3CC"});testList.add(new String[]{"4","4AA","4BB","4CC"});WorderToNewWordUtils.changWord(inputUrl, outputUrl, testMap, testList);}}测试
这么我们就实现了个简单的POI操作模板完成替换和插入的功能,本来还准备实现固定位置插入图片的功能,不过发现这是个巨坑,暂时未实现其功能,等以后有空再进行完善,此代码以docx格式进行演示操作
【easypoi导出word表格】如果遇到poi读取例如{name}不能识别为一个整体,可以使用word的域操作,如果不太清楚域的使用,可以这么操作,先在text文档中写好,例如{name},然后再整个复制到word中,不要一个一个在word中敲,不然有可能不会被poi识别为一个整体