2

Apace POI を使用していくつかのドキュメントを処理しています。複数の段落で構成されるヘッダー/フッターを追加したいのですが、それらを同じ行に表示したいと考えています。

これはこれまでの私の試みです:

XWPFDocument document = new XWPFDocument();

// adding header and footer
CTP ctp = CTP.Factory.newInstance();
CTR ctr = ctp.addNewR();

// create footer components
CTText footerCopyrightText = ctr.addNewT();
footerCopyrightText.setStringValue("\u00A9" + " My Website - " + Calendar.getInstance().get(Calendar.YEAR));

CTText footerPageText = ctr.addNewT();
footerPageText.setStringValue(document.getProperties().getExtendedProperties().getUnderlyingProperties().getPages() + "");

XWPFParagraph footerCopyrightParagraph = new XWPFParagraph( ctp, document );
footerCopyrightParagraph.setAlignment(ParagraphAlignment.CENTER);

XWPFParagraph footerPageParagraph = new XWPFParagraph(ctp, document);
footerPageParagraph.setAlignment(ParagraphAlignment.RIGHT);

XWPFParagraph[] footerParagraphs = {footerCopyrightParagraph, footerPageParagraph};
CTSectPr sectPr = document.getDocument().getBody().addNewSectPr();
XWPFHeaderFooterPolicy headerFooterPolicy = new  XWPFHeaderFooterPolicy(document, sectPr );
headerFooterPolicy.createFooter(STHdrFtr.DEFAULT, footerParagraphs);

ただし、これまでの最終結果は、連結された 2 つの XWPFParagraphs で構成される 1 つの右揃えのテキストを取得することです。

また、スタック オーバーフローで他の例をいくつか確認しました (ヘッダー用の例がありましたが、うまく動作させることができませんでした)。

私が達成したいことの基本的な考えはこれです: http://imgur.com/jrwVO0F

私が間違っていることについてのアイデアはありますか?

ありがとうございました、

4

2 に答える 2

3

タブストップを追加して使用する

これが私の下書きです - 私の名前を A4 文書の左、中央、右に印刷します。これらの位置要素がどのように計算されるかについてはまったくわかりません...タブストップを追加するコードはJava Apache POIタブストップワードドキュメントからのものです

import java.awt.Desktop;
import java.io.*;
import java.math.BigInteger;

import org.apache.poi.xwpf.usermodel.*;
import org.openxmlformats.schemas.wordprocessingml.x2006.main.*;

public class POIExample {
    public static void main(String[] args) {
        try {
            XWPFDocument document = new XWPFDocument();
            XWPFParagraph paragraph = document.createParagraph();

            XWPFRun tmpRun = paragraph.createRun();
            tmpRun.setText("JAN");
            tmpRun.addTab();
            tmpRun.setText("JAN");
            tmpRun.addTab();
            tmpRun.setText("JAN");

            BigInteger pos1 = BigInteger.valueOf(4500);
            setTabStop(paragraph, STTabJc.Enum.forString("center"), pos1);
            BigInteger pos2 = BigInteger.valueOf(9000);
            setTabStop(paragraph, STTabJc.Enum.forString("right"), pos2);

            File f = File.createTempFile("poi", ".docx");
            try (FileOutputStream fo = new FileOutputStream(f)) {
                document.write(fo);
            }
            Desktop.getDesktop().open(f);

        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    public static void setTabStop(XWPFParagraph oParagraph, STTabJc.Enum oSTTabJc, BigInteger oPos) {
        CTP oCTP = oParagraph.getCTP();
        CTPPr oPPr = oCTP.getPPr();
        if (oPPr == null) {
            oPPr = oCTP.addNewPPr();
        }

        CTTabs oTabs = oPPr.getTabs();
        if (oTabs == null) {
            oTabs = oPPr.addNewTabs();
        }

        CTTabStop oTabStop = oTabs.addNewTab();
        oTabStop.setVal(oSTTabJc);
        oTabStop.setPos(oPos);
    }
}
于 2015-11-26T15:34:40.123 に答える
1

それで、いじくり回した後、ようやく機能するバージョンができました。他のユーザーにも役立つことが証明されることを願っています。

フッター オブジェクト コードの作成

    // create footer components
    XWPFDocument document = new XWPFDocument();
    CTP footerCtp = CTP.Factory.newInstance();
    CTR footerCtr = footerCtp.addNewR();
    XWPFParagraph footerCopyrightParagraph = new XWPFParagraph(footerCtp, document);
    document.getProperties().getExtendedProperties().getUnderlyingProperties().getPages();
    XWPFRun run = footerCopyrightParagraph.getRun(footerCtr);
    run.setText("My Website.com");
    run.addTab();
    run.setText("\u00A9" + " My Website - " + Calendar.getInstance().get(Calendar.YEAR));
    run.addTab();
    run.setText("Right Side Text");

    setTabStop(footerCtp, STTabJc.Enum.forString("right"), BigInteger.valueOf(9000));

    XWPFParagraph[] footerParagraphs = {footerCopyrightParagraph};
    CTSectPr sectPr = document.getDocument().getBody().addNewSectPr();
    XWPFHeaderFooterPolicy headerFooterPolicy = new XWPFHeaderFooterPolicy(document, sectPr);
    headerFooterPolicy.createFooter(STHdrFtr.DEFAULT, footerParagraphs);

SetTabStop メソッド

private static void setTabStop(CTP oCTP, STTabJc.Enum oSTTabJc, BigInteger oPos) {
    CTPPr oPPr = oCTP.getPPr();
    if (oPPr == null) {
        oPPr = oCTP.addNewPPr();
    }

    CTTabs oTabs = oPPr.getTabs();
    if (oTabs == null) {
        oTabs = oPPr.addNewTabs();
    }

    CTTabStop oTabStop = oTabs.addNewTab();
    oTabStop.setVal(oSTTabJc);
    oTabStop.setPos(oPos);
}
于 2015-11-27T18:22:26.013 に答える