本文主要是介绍SpringBoot项目借助POI(3.16)实现docx文件加入页码(奇偶页页码格式有区别),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
目录
- 前言
- 需求描述:
- 后端开发框架
- maven引用第三方库
- 实现逻辑
- 具体代码(包含注释)
- 相关链接
前言
docx的相关知识:
docx文件的xml解析
需求描述:
需要给一个word(docx格式)文件加上页码,奇数页页码在右下角,偶数页页码在左下角,并且页码的格式为“- num -”。
如:“- 1 -”、“- 2 -”
奇数页
偶数页
后端开发框架
SpringBoot
maven引用第三方库
<dependency><groupId>org.apache.poi</groupId><artifactId>poi</artifactId><version>3.16</version>
</dependency>
<dependency><groupId>org.apache.poi</groupId><artifactId>poi-ooxml</artifactId><version>3.16</version>
</dependency>
<dependency><groupId>org.apache.poi</groupId><artifactId>poi-ooxml-schemas</artifactId><version>3.16</version>
</dependency>
<dependency><groupId>org.apache.poi</groupId><artifactId>poi-scratchpad</artifactId><version>3.10-FINAL</version>
</dependency>
实现逻辑
- 读入docx文件,
- 增加奇偶页标识(一些文件的设置,具体的流程我也不懂,详情见下面的代码)
- 设置全部页的页码都在右下角,按照对应格式设置页码
- 设置偶数页的页码都在左下角,按照对应格式设置页码
具体代码(包含注释)
/*** 在docx文件中加入奇偶页码(奇数页面加入的页码靠右,偶数页面加入的页码靠左)* 页码样式如下(注意"-"和数字之间均有一个空格,“”中间的为页码样式)*“- 1 -”*“- 2 -”* @param docxFilePath 需要加入页码docx文件的路径* @return 无返回值,在原文件上直接修改**/
public void addOddAndEvenPageNumber(String docxFilePath){XWPFDocument document = null;try {InputStream is = new ByteArrayInputStream(FileUtil.getContent(docxFilePath));//获取docx对象 增加 奇偶页document = new XWPFDocument(is);//添加奇偶页标识addNewEvenAndOddHeaders(document);//为全部页面创建靠右的页码createFooter(document, HeaderFooterType.DEFAULT, ParagraphAlignment.RIGHT);//为偶数页创建靠左的页码createFooter(document,HeaderFooterType.EVEN,ParagraphAlignment.LEFT);//在指定路径生成对应的文件document.write(new FileOutputStream(docxFilePath));} catch (IOException e) {e.printStackTrace();} catch (IllegalAccessException e) {e.printStackTrace();} catch (NoSuchFieldException e) {e.printStackTrace();}}/*** 创建页码** @param document 需要引用的XWPFDocument对象* @param headerFooterType 页码的样式 HeaderFooterType.DEFAULT 所有页面 HeaderFooterType.EVEN 偶数下标页面* @param paragraphAlignment 脚标靠哪个方向 如:ParagraphAlignment.RIGHT 靠右* @throws IOException* @throws NoSuchFieldException* @throws IllegalAccessException*/
static void createFooter(XWPFDocument document, HeaderFooterType headerFooterType, ParagraphAlignment paragraphAlignment) throws IOException, NoSuchFieldException, IllegalAccessException {//设置XWPFFooter类型脚标对象XWPFFooter footer = document.createFooter(headerFooterType);//创建一个新的XWPFFooter对象XWPFParagraph paragraph = footer.createParagraph();//创建新的XWPFParagraph对象paragraph.setAlignment(paragraphAlignment);//设置样式靠右//设置段落对象XWPFRun runPre = paragraph.createRun();//新的段落对象runPre.setText("- ");setXWPFRunStyle(runPre,"宋体",14);XWPFRun run = paragraph.createRun();//新的段落对象CTFldChar fldChar = run.getCTR().addNewFldChar();//新的CTFldChar对象fldChar.setFldCharType(STFldCharType.Enum.forString("begin"));CTText ctText = run.getCTR().addNewInstrText();ctText.setStringValue("PAGE \\* MERGEFORMAT");ctText.setSpace(SpaceAttribute.Space.Enum.forString("preserve"));setXWPFRunStyle(run,"宋体",14);fldChar = run.getCTR().addNewFldChar();fldChar.setFldCharType(STFldCharType.Enum.forString("end"));//设置段落对象XWPFRun runSuf = paragraph.createRun();//新的段落对象runSuf.setText(" -");setXWPFRunStyle(runSuf,"宋体",14);
}/*** 添加奇偶页标识* @param document word对应的XWPFDocument对象*/
static void addNewEvenAndOddHeaders(XWPFDocument document){//设置奇偶页辨别try{Field _settings = XWPFDocument.class.getDeclaredField("settings");_settings.setAccessible(true);XWPFSettings xwpfsettings = (XWPFSettings)_settings.get(document);Field _ctSettings = XWPFSettings.class.getDeclaredField("ctSettings");_ctSettings.setAccessible(true);CTSettings ctsettings =(CTSettings)_ctSettings.get(xwpfsettings);ctsettings.addNewEvenAndOddHeaders();}catch (Exception e){e.printStackTrace();}
}/*** 设置页脚的字体样式* @param r1 段落元素* @param font 段落元素* @param fontSize 的大小*/
static void setXWPFRunStyle(XWPFRun r1, String font, int fontSize) {r1.setFontSize(fontSize);CTRPr rpr = r1.getCTR().isSetRPr() ? r1.getCTR().getRPr() : r1.getCTR().addNewRPr();CTFonts fonts = rpr.isSetRFonts() ? rpr.getRFonts() : rpr.addNewRFonts();fonts.setAscii(font);fonts.setEastAsia(font);fonts.setHAnsi(font);
}
相关链接
How to generate different headers in first page and other pages in poi word XWPF?
XWPFDocument的官方文档传送门
这篇关于SpringBoot项目借助POI(3.16)实现docx文件加入页码(奇偶页页码格式有区别)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!