POI 3.10版本操作修改word内容_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > POI 3.10版本操作修改word内容

POI 3.10版本操作修改word内容

 2014/4/10 18:51:15  中华国锋  程序员俱乐部  我要评论(0)
  • 摘要:注意,poi的版本为:poi-3.10-FINAL所用jar包为:commons-codec-1.5.jarcommons-logging-1.1.jarlog4j-1.2.13.jarpoi-3.10-FINAL-20140208.jarpoi-scratchpad-3.10-FINAL-20140208.jarpoi下载地址:http://mirror.bit.edu.cn/apache/poi/release/bin/poi-bin-3.10-FINAL-20140208
  • 标签:内容 操作 版本

注意,poi的版本为:poi-3.10-FINAL

所用jar包为:commons-codec-1.5.jar

commons-logging-1.1.jar

log4j-1.2.13.jar

poi-3.10-FINAL-20140208.jar

poi-scratchpad-3.10-FINAL-20140208.jar

?

poi下载地址:

http://mirror.bit.edu.cn/apache/poi/release/bin/poi-bin-3.10-FINAL-20140208.zip

?

?

import java.io.ByteArrayOutputStream;

import java.io.File;

import java.io.FileInputStream;

import java.io.FileOutputStream;

import java.io.IOException;

import java.util.HashMap;

import java.util.Iterator;

import java.util.Map;

?

import org.apache.poi.hwpf.HWPFDocument;

import org.apache.poi.hwpf.model.FieldsDocumentPart;

import org.apache.poi.hwpf.usermodel.Field;

import org.apache.poi.hwpf.usermodel.Fields;

import org.apache.poi.hwpf.usermodel.Range;

?

?

?

?

public class testWord {

?

/**

* @param args

* @throws IOException?

*/

public static void main(String[] args) throws IOException {

//读取word模板

String fileDir = "G:/testDdoc";

FileInputStream in = new FileInputStream(new File(fileDir+"/template.doc"));

HWPFDocument hdt = new HWPFDocument(in);

Fields fields = hdt.getFields();

?

Iterator<Field> it = fields.getFields(FieldsDocumentPart.MAIN).iterator();

while(it.hasNext()){

System.out.println(it.next().getType());

}

?

//读取word文本内容

Range range = (Range) hdt.getRange();

System.out.println(((org.apache.poi.hwpf.usermodel.Range) range).text());

Map<String,String> map = new HashMap<String,String>();

map.put("name", "条款名称修改");

map.put("qianzi", "陈test");

?

//替换文本内容

for (Map.Entry<String,String> entry: map.entrySet() ) {

range.replaceText(entry.getKey(),entry.getValue());

}

ByteArrayOutputStream ostream = new ByteArrayOutputStream();

String fileName = ""+System.currentTimeMillis();

fileName += ".doc";

FileOutputStream out = new FileOutputStream(fileDir+"/"+fileName,true);

hdt.write(ostream);

//输出字节流

out.write(ostream.toByteArray());

out.close();

ostream.close();

?

}

?

}

?

上一篇: 计算非负数二进制形式中1的个数 下一篇: 没有下一篇了!
发表评论
用户名: 匿名