如何使用ApachePOI在Java中创建目录? [英] How to create Table of Content in java using Apache POI?

查看:27
本文介绍了如何使用ApachePOI在Java中创建目录?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

谁能给我举个简单的例子。 我找不到使用Apache POI Docx的有关目录的示例。

谢谢。

推荐答案

public class App {

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

  XWPFDocument doc= new XWPFDocument();

  doc.createTOC();
  addCustomHeadingStyle(doc, "heading 1", 1);  
  addCustomHeadingStyle(doc, "heading 2", 2);  

  // the body content
  XWPFParagraph paragraph = doc.createParagraph();


  CTP ctP = paragraph.getCTP();
  CTSimpleField toc = ctP.addNewFldSimple();
  toc.setInstr("TOC \h");
  toc.setDirty(STOnOff.TRUE);

  XWPFRun run=paragraph.createRun();  
  run.setText("The Body:");

  paragraph = doc.createParagraph();
  run=paragraph.createRun();  
  run.setText("Lorem ipsum");
  paragraph.setStyle("heading 1");  


  paragraph = doc.createParagraph();
  run=paragraph.createRun();
  run.addBreak(BreakType.PAGE); 
  run.setText("Lorem ipsum");
  paragraph.setStyle("heading 2");  


  paragraph = doc.createParagraph();
  run=paragraph.createRun();
  run.addBreak(BreakType.PAGE); 
  run.setText("Lorem ipsum");
  FileOutputStream fos = new FileOutputStream("D:\toc.docx");
    doc.write(fos);
 }
 private static void addCustomHeadingStyle(XWPFDocument docxDocument, String strStyleId, int headingLevel) {  

     CTStyle ctStyle = CTStyle.Factory.newInstance();  
     ctStyle.setStyleId(strStyleId);  

     CTString styleName = CTString.Factory.newInstance();  
     styleName.setVal(strStyleId);  
     ctStyle.setName(styleName);  

     CTDecimalNumber indentNumber = CTDecimalNumber.Factory.newInstance();  
     indentNumber.setVal(BigInteger.valueOf(headingLevel));  

     // lower number > style is more prominent in the formats bar  
     ctStyle.setUiPriority(indentNumber);  

     CTOnOff onoffnull = CTOnOff.Factory.newInstance();  
     ctStyle.setUnhideWhenUsed(onoffnull);  

     // style shows up in the formats bar  
     ctStyle.setQFormat(onoffnull);  

     // style defines a heading of the given level  
     CTPPr ppr = CTPPr.Factory.newInstance();  
     ppr.setOutlineLvl(indentNumber);  
     ctStyle.setPPr(ppr);  

     XWPFStyle style = new XWPFStyle(ctStyle);  

     // is a null op if already defined  
     XWPFStyles styles = docxDocument.createStyles();  

     style.setType(STStyleType.PARAGRAPH);  
     styles.addStyle(style);  

 }  

 }

这篇关于如何使用ApachePOI在Java中创建目录?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆