テンプレートWord文書をロードして、コンテンツを追加し、新しい文書として保存したい。 .docファイルに取り組んでいます。
長い調査の後、docxの解決策しか見つかりませんでした:
http://www.smartjava.org/content/create-complex-Word-docx-documents-programatically-docx4j
http://www.sambhashanam.com/mail-merge-in-Java-for-Microsoft-Word-document-part-i/
だから私はこの形式で書かれた変数を置き換えたい:$VAR
その値によって。それをベロシティまたはApache-poiで行うことはできますか?任意の助けをいただければ幸いです。
はい、Apache-POIを使用して実行できます。変数名は一意でなければなりません。次のコードを参照してください
import Java.io.FileInputStream;
import Java.io.FileNotFoundException;
import Java.io.FileOutputStream;
import Java.io.IOException;
import org.Apache.poi.hwpf.HWPFDocument;
import org.Apache.poi.hwpf.usermodel.CharacterRun;
import org.Apache.poi.hwpf.usermodel.Paragraph;
import org.Apache.poi.hwpf.usermodel.Range;
import org.Apache.poi.hwpf.usermodel.Section;
import org.Apache.poi.poifs.filesystem.POIFSFileSystem;
public class HWPFTest {
public static void main(String[] args){
String filePath = "F:\\Sample.doc";
POIFSFileSystem fs = null;
try {
fs = new POIFSFileSystem(new FileInputStream(filePath));
HWPFDocument doc = new HWPFDocument(fs);
doc = replaceText(doc, "$VAR", "MyValue1");
saveWord(filePath, doc);
}
catch(FileNotFoundException e){
e.printStackTrace();
}
catch(IOException e){
e.printStackTrace();
}
}
private static HWPFDocument replaceText(HWPFDocument doc, String findText, String replaceText){
Range r1 = doc.getRange();
for (int i = 0; i < r1.numSections(); ++i ) {
Section s = r1.getSection(i);
for (int x = 0; x < s.numParagraphs(); x++) {
Paragraph p = s.getParagraph(x);
for (int z = 0; z < p.numCharacterRuns(); z++) {
CharacterRun run = p.getCharacterRun(z);
String text = run.text();
if(text.contains(findText)) {
run.replaceText(findText, replaceText);
}
}
}
}
return doc;
}
private static void saveWord(String filePath, HWPFDocument doc) throws FileNotFoundException, IOException{
FileOutputStream out = null;
try{
out = new FileOutputStream(filePath);
doc.write(out);
}
finally{
out.close();
}
}
}