http://topic.csdn.net/u/20110315/09/04da61af-1658-48e9-a4a6-d47853ddae6f.html
唉,自己解决了,贴出来,大家看看,不知道能否给大家以帮助
try
{
OPCPackage pack = POIXMLDocument.openPackage("C://workspace//test.docx");
XWPFDocument doc = new XWPFDocument(pack) ;
Iterator<XWPFParagraph> paragraphIt= doc.getParagraphsIterator();
while (paragraphIt.hasNext())
{
XWPFParagraph paragraph= paragraphIt.next();
if(paragraph.getParagraphText().indexOf("$kvalue$")!=-1)
{
List<XWPFRun> run=paragraph.getRuns();
for(int i=0;i<run.size();i++)
{
if(run.get(i).getText(run.get(i).getTextPosition())!=null && run.get(i).getText(run.get(i).getTextPosition()).equals("$kvalue$"))
{
/**参数0表示生成的文字是要从哪一个地方开始放置,一开始这里的代码是
* run.get(i).setText("AAAA",run.get(i).getTextPosition());
* 结果AAAA总是添加到要被替换的文字之后,经查看API知道,设置文字从位置0开始
* 就可以把原来的文字全部替换掉了
* */ run.get(i).setText("AAAA",0);
}
}
}
}
FileOutputStream fos = new FileOutputStream("C://workspace//test1.docx");
doc.write(fos);
fos.flush();
fos.close();
另外一个:
http://www.cnblogs.com/monica/archive/2009/11/15/1603381.html
最开始看到的:
通过下面的两种方法可以从文档里读取所有字符性的内容(忽略字符的属性)。
通过输出流来写到文本文件中。
public static void getWordContent(String fileName) throws Exception{
FileInputStream in = new FileInputStream(new File(fileName));
WordExtractor extractor = new WordExtractor(in);
String text = extractor.getText();
FileWriter f = new FileWriter(new File("e://Test.txt"));
f.write(text);
f.close();
}
public static void getWordDetail(String fileName) throws Exception{
FileInputStream in = new FileInputStream(new File(fileName));
FileOutputStream out = new FileOutputStream(new File("e://test.txt"));
HWPFDocument doc = new HWPFDocument(in);
System.out.println("文档长度:"+doc.characterLength());
Range range = doc.getRange();
String text = range.text();
System.out.println(text);
byte[] _inBuf = text.getBytes();
out.write(_inBuf);
out.close();
}
如果要每个字符的样式,可以用CharaterRun这个类,它的方法专门用于获得字符和判断的样式。
如:
import java.io.File;
import java.io.FileInputStream;
import org.apache.poi.hwpf.HWPFDocument;
import org.apache.poi.hwpf.usermodel.Range;
import org.apache.poi.hwpf.usermodel.CharacterRun;
public class Angle {
public static void getAwayAngle(String fileName) throws Exception {
FileInputStream in = new FileInputStream(new File(fileName));
HWPFDocument doc = new HWPFDocument(in);
int length = doc.characterLength();
StringBuffer sb = new StringBuffer();
for (int i = 0; i < length-1; i++) {
Range range = new Range(i, i+1, doc);
//之所以用这个构造方法,是因为整篇文章的字符判断不准确。只好一个字符一个字符的来判断。
//而且API的说明文字相当的不全。
for(int j=0;j<range.numCharacterRuns();j++){
CharacterRun cr=range.getCharacterRun(j);
if(cr.getSubSuperScriptIndex()==0)//getSubSuperScriptIndex()这个方法来判断是否是上下角标
sb.append(range.text());
}
}
System.out.println(sb.toString());
}
public static void main(String[] args) {
try {
getAwayAngle("e://test1.doc");
} catch (Exception e) {
e.printStackTrace();
}
}
}
在POI中Range这个类是核心类。里面有很多方法用来操作WORD文档。
还有其它比较重要的类Section和Paragraph等。
POI没有中文的API,英文的API说明相当不全,方法多数只能靠猜。Apache太不负责任了