如何在poi word(XWPF)中设置页眉和页脚位置? 太感谢此文章 提供思路 亲测可用

Axe*_*ter 5

为此,您需要设置页边距。为此,您将需要org.openxmlformats.schemas.wordprocessingml.x2006.main.CTPageMar。为了使用此功能,我们需要完全ooxml-schemas-1.3.jarhttps://poi.apache.org/faq.html#faq-N10025中所述

例:

import java.io.*;

import org.apache.poi.xwpf.usermodel.*;

import org.apache.poi.xwpf.model.XWPFHeaderFooterPolicy;

import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTSectPr;
import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTPageMar;

import java.math.BigInteger;

public class CreateWordHeaderFooterTopBottom {

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

  XWPFDocument document = new XWPFDocument();

  // create header-footer
  XWPFHeaderFooterPolicy headerFooterPolicy = document.getHeaderFooterPolicy();
  if (headerFooterPolicy == null) headerFooterPolicy = document.createHeaderFooterPolicy();

  // create header start
  XWPFHeader header = headerFooterPolicy.createHeader(XWPFHeaderFooterPolicy.DEFAULT);

  XWPFParagraph paragraph = header.createParagraph();
  paragraph.setAlignment(ParagraphAlignment.CENTER);

  XWPFRun run = paragraph.createRun();  
  run.setText("Header");

  // create footer start
  XWPFFooter footer = headerFooterPolicy.createFooter(XWPFHeaderFooterPolicy.DEFAULT);

  paragraph = footer.createParagraph();
  paragraph.setAlignment(ParagraphAlignment.CENTER);

  run = paragraph.createRun();  
  run.setText("Footer");

  CTSectPr sectPr = document.getDocument().getBody().getSectPr();
  if (sectPr == null) sectPr = document.getDocument().getBody().addNewSectPr();
  CTPageMar pageMar = sectPr.getPgMar();
  if (pageMar == null) pageMar = sectPr.addNewPgMar();
  pageMar.setLeft(BigInteger.valueOf(720)); //720 TWentieths of an Inch Point (Twips) = 720/20 = 36 pt = 36/72 = 0.5"
  pageMar.setRight(BigInteger.valueOf(720));
  pageMar.setTop(BigInteger.valueOf(1440)); //1440 Twips = 1440/20 = 72 pt = 72/72 = 1"
  pageMar.setBottom(BigInteger.valueOf(1440));

  pageMar.setHeader(BigInteger.valueOf(908)); //45.4 pt * 20 = 908 = 45.4 pt header from top
  pageMar.setFooter(BigInteger.valueOf(568)); //28.4 pt * 20 = 568 = 28.4 pt footer from bottom

  document.write(new FileOutputStream("CreateWordHeaderFooterTopBottom.docx"));

  document.close();

 }
}

注意特殊测量单位Twip= TW一个的entieths NCH P oint。

    • *

原网址: 访问
创建于: 2023-05-06 18:03:39
目录: default
标签: 无

请先后发表评论
  • 最新评论
  • 总共0条评论