web-dev-qa-db-ja.com

JavaでWord文書/テンプレートを開いて操作する方法は?

.doc/.dot/.docx/.dotx(うるさくはありません。機能させたいだけです)のドキュメントを開き、プレースホルダー(または類似のもの)について解析し、独自のデータを入力して、生成された.doc/.docx/.dotx/.pdfを返す必要があります資料。

そして何よりも、それを無料で実現するためのツールが必要です。

私は自分のニーズに合うものを探して回りましたが、何も見つかりません。 Docmosis、Javadocx、Asposeなどのツールは商用です。私が読んだことによると、Apache POIはこれをうまく実装できていません(現在、フレームワークのWord部分に取り組んでいる公式の開発者はいません)。

トリックを実行できると思われるのは、OpenOffice UNO APIだけです。しかし、これはこのAPIを使用したことがない人(私のように)にとってはかなり大きなバイトです。

ですから、これに飛び込むつもりなら、私が正しい道にいることを確認する必要があります。

誰かがこれについてアドバイスをくれますか?

16
kensvebary

私はこの質問を投稿してから長い時間が経過していることを知っていて、完了したら解決策を投稿するつもりだと言いました。だからここにあります。

いつか誰かのお役に立てば幸いです。これは完全な作業クラスであり、あなたがしなければならないすべてはあなたのアプリケーションにそれを置き、そしてあなたのルートディレクトリに.docxテンプレートでTEMPLATE_DIRECTORY_ROOTディレクトリを置くことです。

使い方はとても簡単です。 .docxファイルにプレースホルダー(キー)を置き、ファイル名と、そのファイルに対応するキーと値のペアを含むマップを渡します。

楽しい!

import Java.io.BufferedInputStream;
import Java.io.BufferedOutputStream;
import Java.io.BufferedReader;
import Java.io.Closeable;
import Java.io.File;
import Java.io.FileInputStream;
import Java.io.FileOutputStream;
import Java.io.IOException;
import Java.io.InputStream;
import Java.io.InputStreamReader;
import Java.io.OutputStream;
import Java.net.URI;
import Java.util.Deque;
import Java.util.Enumeration;
import Java.util.HashMap;
import Java.util.Iterator;
import Java.util.LinkedList;
import Java.util.Map;
import Java.util.UUID;
import Java.util.Zip.ZipEntry;
import Java.util.Zip.ZipFile;
import Java.util.Zip.ZipOutputStream;

import javax.faces.context.ExternalContext;
import javax.faces.context.FacesContext;
import javax.servlet.http.HttpServletResponse;

public class DocxManipulator {

    private static final String MAIN_DOCUMENT_PATH = "Word/document.xml";
    private static final String TEMPLATE_DIRECTORY_ROOT = "TEMPLATES_DIRECTORY/";


    /*    PUBLIC METHODS    */

    /**
     * Generates .docx document from given template and the substitution data
     * 
     * @param templateName
     *            Template data
     * @param substitutionData
     *            Hash map with the set of key-value pairs that represent
     *            substitution data
     * @return
     */
    public static Boolean generateAndSendDocx(String templateName, Map<String,String> substitutionData) {

        String templateLocation = TEMPLATE_DIRECTORY_ROOT + templateName;

        String userTempDir = UUID.randomUUID().toString();
        userTempDir = TEMPLATE_DIRECTORY_ROOT + userTempDir + "/";

        try {

            // Unzip .docx file
            unzip(new File(templateLocation), new File(userTempDir));       

            // Change data
            changeData(new File(userTempDir + MAIN_DOCUMENT_PATH), substitutionData);

            // Rezip .docx file
            Zip(new File(userTempDir), new File(userTempDir + templateName));

            // Send HTTP response
            sendDOCXResponse(new File(userTempDir + templateName), templateName);

            // Clean temp data
            deleteTempData(new File(userTempDir));
        } 
        catch (IOException ioe) {
            System.out.println(ioe.getMessage());
            return false;
        }

        return true;
    }


    /*    PRIVATE METHODS    */

    /**
     * Unzipps specified Zip file to specified directory
     * 
     * @param zipfile
     *            Source Zip file
     * @param directory
     *            Destination directory
     * @throws IOException
     */
    private static void unzip(File zipfile, File directory) throws IOException {

        ZipFile zfile = new ZipFile(zipfile);
        Enumeration<? extends ZipEntry> entries = zfile.entries();

        while (entries.hasMoreElements()) {
          ZipEntry entry = entries.nextElement();
          File file = new File(directory, entry.getName());
          if (entry.isDirectory()) {
            file.mkdirs();
          } 
          else {
            file.getParentFile().mkdirs();
            InputStream in = zfile.getInputStream(entry);
            try {
              copy(in, file);
            } 
            finally {
              in.close();
            }
          }
        }
      }


    /**
     * Substitutes keys found in target file with corresponding data
     * 
     * @param targetFile
     *            Target file
     * @param substitutionData
     *            Map of key-value pairs of data
     * @throws IOException
     */
    @SuppressWarnings({ "unchecked", "rawtypes" })
    private static void changeData(File targetFile, Map<String,String> substitutionData) throws IOException{

        BufferedReader br = null;
        String docxTemplate = "";
        try {
            br = new BufferedReader(new InputStreamReader(new FileInputStream(targetFile), "UTF-8"));
            String temp;
            while( (temp = br.readLine()) != null)
                docxTemplate = docxTemplate + temp; 
            br.close();
            targetFile.delete();
        } 
        catch (IOException e) {
            br.close();
            throw e;
        }

        Iterator substitutionDataIterator = substitutionData.entrySet().iterator();
        while(substitutionDataIterator.hasNext()){
            Map.Entry<String,String> pair = (Map.Entry<String,String>)substitutionDataIterator.next();
            if(docxTemplate.contains(pair.getKey())){
                if(pair.getValue() != null)
                    docxTemplate = docxTemplate.replace(pair.getKey(), pair.getValue());
                else
                    docxTemplate = docxTemplate.replace(pair.getKey(), "NEDOSTAJE");
            }
        }

        FileOutputStream fos = null;
        try{
            fos = new FileOutputStream(targetFile);
            fos.write(docxTemplate.getBytes("UTF-8"));
            fos.close();
        }
        catch (IOException e) {
            fos.close();
            throw e;
        }
    }

    /**
     * Zipps specified directory and all its subdirectories
     * 
     * @param directory
     *            Specified directory
     * @param zipfile
     *            Output Zip file name
     * @throws IOException
     */
    private static void Zip(File directory, File zipfile) throws IOException {

        URI base = directory.toURI();
        Deque<File> queue = new LinkedList<File>();
        queue.Push(directory);
        OutputStream out = new FileOutputStream(zipfile);
        Closeable res = out;

        try {
          ZipOutputStream zout = new ZipOutputStream(out);
          res = zout;
          while (!queue.isEmpty()) {
            directory = queue.pop();
            for (File kid : directory.listFiles()) {
              String name = base.relativize(kid.toURI()).getPath();
              if (kid.isDirectory()) {
                queue.Push(kid);
                name = name.endsWith("/") ? name : name + "/";
                zout.putNextEntry(new ZipEntry(name));
              } 
              else {
                if(kid.getName().contains(".docx"))
                    continue;  
                zout.putNextEntry(new ZipEntry(name));
                copy(kid, zout);
                zout.closeEntry();
              }
            }
          }
        } 
        finally {
          res.close();
        }
      }

    /**
     * Sends HTTP Response containing .docx file to Client
     * 
     * @param generatedFile
     *            Path to generated .docx file
     * @param fileName
     *            File name of generated file that is being presented to user
     * @throws IOException
     */
    private static void sendDOCXResponse(File generatedFile, String fileName) throws IOException {

        FacesContext facesContext = FacesContext.getCurrentInstance();
        ExternalContext externalContext = facesContext.getExternalContext();
        HttpServletResponse response = (HttpServletResponse) externalContext
                .getResponse();

        BufferedInputStream input = null;
        BufferedOutputStream output = null;

        response.reset();
        response.setHeader("Content-Type", "application/msword");
        response.setHeader("Content-Disposition", "attachment; filename=\"" + fileName + "\"");
        response.setHeader("Content-Length",String.valueOf(generatedFile.length()));

        input = new BufferedInputStream(new FileInputStream(generatedFile), 10240);
        output = new BufferedOutputStream(response.getOutputStream(), 10240);

        byte[] buffer = new byte[10240];
        for (int length; (length = input.read(buffer)) > 0;) {
            output.write(buffer, 0, length);
        }

        output.flush();
        input.close();
        output.close();

        // Inform JSF not to proceed with rest of life cycle
        facesContext.responseComplete();
    }


    /**
     * Deletes directory and all its subdirectories
     * 
     * @param file
     *            Specified directory
     * @throws IOException
     */
    public static void deleteTempData(File file) throws IOException {

        if (file.isDirectory()) {

            // directory is empty, then delete it
            if (file.list().length == 0)
                file.delete();
            else {
                // list all the directory contents
                String files[] = file.list();

                for (String temp : files) {
                    // construct the file structure
                    File fileDelete = new File(file, temp);
                    // recursive delete
                    deleteTempData(fileDelete);
                }

                // check the directory again, if empty then delete it
                if (file.list().length == 0)
                    file.delete();
            }
        } else {
            // if file, then delete it
            file.delete();
        }
    }

    private static void copy(InputStream in, OutputStream out) throws IOException {

        byte[] buffer = new byte[1024];
        while (true) {
          int readCount = in.read(buffer);
          if (readCount < 0) {
            break;
          }
          out.write(buffer, 0, readCount);
        }
      }

      private static void copy(File file, OutputStream out) throws IOException {
        InputStream in = new FileInputStream(file);
        try {
          copy(in, out);
        } finally {
          in.close();
        }
      }

      private static void copy(InputStream in, File file) throws IOException {
        OutputStream out = new FileOutputStream(file);
        try {
          copy(in, out);
        } finally {
          out.close();
        }
     }

}
28
kensvebary

Docxファイルはxmlファイル(および画像などの埋め込みオブジェクト用のバイナリファイル)のZipアーカイブにすぎないため、Zipファイルを解凍し、document.xmlをテンプレートエンジンにフィードすることでその要件を満たしました(使用した- freemarker )マージを実行し、出力ドキュメントを圧縮して新しいdocxファイルを取得します。

テンプレートドキュメントは、フリーマーカー式/ディレクティブが埋め込まれた通常のdocxであり、Wordで編集できます。

JDKを使用して圧縮解除(解凍)を行うことができ、Freemarkerはオープンソースであるため、Word自体についても、ライセンス料は発生しません。

制限は、このアプローチはdocxまたはrtfファイルのみを発行でき、出力ドキュメントはテンプレートと同じファイルタイプになることです。ドキュメントを別の形式(pdfなど)に変換する必要がある場合は、その問題を個別に解決する必要があります。

5
meriton

最終的に、Apache Poi 3.12に依存して段落を処理しました(テーブル、ヘッダー/フッター、脚注からも個別に段落を抽出します。このような段落は XWPFDocument.getParagraphs() から返されないためです)。

処理コード( 〜100 lines )と単体テストは here github です。

3
Fabrizio

私は最近同様の問題に対処しました:「テンプレート '.docx'ファイルを受け入れ、渡されたパラメーターコンテキストの評価によってファイルを処理し、プロセスの結果として '.docx'ファイルを出力するツール。」

ついに神は私たちをもたらした scriptlet4dox :)。この製品の主な機能は次のとおりです。1.テンプレートファイル内のスクリプトとしてのGroovyコードインジェクション(パラメーターインジェクションなど)2.テーブル内のコレクションアイテムのループ

そして他の多くの機能。しかし、プロジェクトの最後のコミットが約1年前に行われたことを確認したので、プロジェクトが新しい機能と新しいバグ修正でサポートされていない可能性があります。これは、それを使用するかどうかの選択です。

0
Ehsan Soleimani

私は多かれ少なかれあなたと同じ状況にありました、私は一度にたくさんのMS Wordマージテンプレートを修正しなければなりませんでした。 Javaソリューションを見つけるためにたくさんググった後、私はようやく無料のVisual Studio 2010 Expressをインストールし、C#で仕事をしました。

0
stbas