xwpftemplate的时间设置_POI往word模板中写入数据

该博客介绍了如何使用Java的XWPFTemplate和Apache POI库来读取Word模板文件,并替换其中的时间和自定义数据。通过遍历段落和表格,找到并替换占位符,实现动态生成Word文档。示例代码展示了如何进行替换操作以及保存输出文件。
摘要由CSDN通过智能技术生成

importjava.io.ByteArrayOutputStream;importjava.io.File;importjava.io.FileInputStream;importjava.io.FileOutputStream;importjava.io.IOException;importjava.io.InputStream;importjava.io.OutputStream;importjava.util.HashMap;importjava.util.Iterator;importjava.util.List;importjava.util.Map;importjava.util.Map.Entry;importjava.util.regex.Matcher;importjava.util.regex.Pattern;importorg.apache.poi.POIXMLProperties.CoreProperties;importorg.apache.poi.hwpf.HWPFDocument;importorg.apache.poi.hwpf.usermodel.Range;importorg.apache.poi.xwpf.extractor.XWPFWordExtractor;importorg.apache.poi.xwpf.usermodel.XWPFDocument;importorg.apache.poi.xwpf.usermodel.XWPFParagraph;importorg.apache.poi.xwpf.usermodel.XWPFRun;importorg.apache.poi.xwpf.usermodel.XWPFTable;importorg.apache.poi.xwpf.usermodel.XWPFTableCell;importorg.apache.poi.xwpf.usermodel.XWPFTableRow;importcom.deepoove.poi.XWPFTemplate;importcom.deepoove.poi.data.PictureRenderData;/***@authorAdmin

**/

public classWriteWordUtil {public void writeDocx(String path, Map map) throwsException {

InputStream is= newFileInputStream(path);

XWPFDocument doc= newXWPFDocument(is);//XWPFWordExtractor extractor = new XWPFWordExtractor(doc) ;//String text = extractor.getText();//System.out.println(text);//CoreProperties coreProps = extractor.getCoreProperties();//this.printCoreProperties(coreProps);//this.close(is);

}/*** 替换段落里面的变量

*

*@paramdoc

* 要替换的文档

*@paramparams

* 参数*/

private void replaceInPara(XWPFDocument doc, Mapparams) {

Iterator iterator =doc.getParagraphsIterator();

XWPFParagraph para;while(iterator.hasNext()) {

para=iterator.next();this.replaceInPara(para, params);

}

}/*** 替换段落里面的变量

*

*@parampara

* 要替换的段落

*@paramparams

* 参数*/

private void replaceInPara(XWPFParagraph para, Mapparams) {

Listruns;

Matcher matcher;if (this.matcher(para.getParagraphText()).find()) {

runs=para.getRuns();for (int i = 0; i < runs.size(); i++) {

XWPFRun run=runs.get(i);

String runText=run.toString();

matcher= this.matcher(runText);if(matcher.find()) {while ((matcher = this.matcher(runText)).find()) {

runText= matcher.replaceFirst(String.valueOf(params.get(matcher.group(1))));

}//直接调用XWPFRun的setText()方法设置文本时,在底层会重新创建一个XWPFRun,把文本附加在当前文本后面,//所以我们不能直接设值,需要先删除当前run,然后再自己手动插入一个新的run。

para.removeRun(i);if(runText.equals("null")){

runText="";

}

para.insertNewRun(i).setText(runText);

}

}

}

}/*** 替换表格里面的变量

*

*@paramdoc

* 要替换的文档

*@paramparams

* 参数*/

private void replaceInTable(XWPFDocument doc, Mapparams) {

Iterator iterator =doc.getTablesIterator();

XWPFTable table;

Listrows;

Listcells;

Listparas;while(iterator.hasNext()) {

table=iterator.next();

rows=table.getRows();for(XWPFTableRow row : rows) {

cells=row.getTableCells();for(XWPFTableCell cell : cells) {

String cellTextString=cell.getText();for (Entrye : params.entrySet()) {if (cellTextString.contains("${"+e.getKey()+"}"))

cellTextString= cellTextString.replace("${"+e.getKey()+"}", e.getValue().toString());

}

cell.removeParagraph(0);if(cellTextString.contains("${") && cellTextString.contains("}")){

cellTextString= "";

}

cell.setText(cellTextString);//paras = cell.getParagraphs();//for (XWPFParagraph para : paras) {//this.replaceInPara(para, params);//}

}

}

}

}/*** 正则匹配字符串

*

*@paramstr

*@return

*/

privateMatcher matcher(String str) {

Pattern pattern= Pattern.compile("\\$\\{(.+?)\\}", Pattern.CASE_INSENSITIVE);

Matcher matcher=pattern.matcher(str);returnmatcher;

}/*** 关闭输入流

*

*@paramis*/

private voidclose(InputStream is) {if (is != null) {try{

is.close();

}catch(IOException e) {

e.printStackTrace();

}

}

}/*** 关闭输出流

*

*@paramos*/

private voidclose(OutputStream os) {if (os != null) {try{

os.close();

}catch(IOException e) {

e.printStackTrace();

}

}

}/*** 输出CoreProperties信息

*

*@paramcoreProps*/

private voidprintCoreProperties(CoreProperties coreProps) {

System.out.println(coreProps.getCategory());//分类

System.out.println(coreProps.getCreator()); //创建者

System.out.println(coreProps.getCreated()); //创建时间

System.out.println(coreProps.getTitle()); //标题

}/*** word占位用${object}有缺陷不能填充图片

*@paramfilePath

*@paramparams

*@throwsException*/

public static String templateWrite(String filePath, Map params,String outFilePath)throwsException{

InputStream is= newFileInputStream(filePath);

WriteWordUtil writeWordUtil= newWriteWordUtil();

XWPFDocument doc= newXWPFDocument(is);//替换段落里面的变量

writeWordUtil.replaceInPara(doc, params);//替换表格里面的变量

writeWordUtil.replaceInTable(doc, params);

OutputStream os= newFileOutputStream(outFilePath);

doc.write(os);

writeWordUtil.close(os);

writeWordUtil.close(is);

os.flush();

os.close();return "";

}/*** word占位用{{object}}比较完美可以填充图片

*@paramfilePath

*@paramparams

*@paramoutFilePath

*@return*@throwsException*/

public static String templateWrite2(String filePath, Map params,String outFilePath)throwsException{

XWPFTemplate template=XWPFTemplate.compile(filePath).render(params);

FileOutputStream out= newFileOutputStream(outFilePath);

template.write(out);

out.flush();

out.close();

template.close();return "";

}public static void main(String[] args) throwsException {

Map params = new HashMap();

params.put("JSDWMC", "项目1\r\na");//

params.put("XMMC", "项目2\r\nb");//

params.put("1", "1");// params.put("2", "2");// params.put("object1", "o1");//

params.put("object2", "o2");//                params.put("localPicture", new PictureRenderData(120, 120, "D:\\A.png"));

templateWrite("D:\\template\\1.docx", params, "D:\\template\\5.docx");

templateWrite2("D:\\2.docx", params, "D:\\template\\7.docx");

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值