How to create Table of Content in java using Apache POI?(如何使用ApachePOI在Java中创建目录?)
                            本文介绍了如何使用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中创建目录?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
				 沃梦达教程
				
			本文标题为:如何使用ApachePOI在Java中创建目录?
 
				
         
 
            
        
             猜你喜欢
        
	     - Eclipse 的最佳 XML 编辑器 2022-01-01
- GC_FOR_ALLOC 是否更“严重"?在调查内存使用情况时? 2022-01-01
- 转换 ldap 日期 2022-01-01
- 将 Java Swing 桌面应用程序国际化的最佳实践是什么? 2022-01-01
- 如何使 JFrame 背景和 JPanel 透明且仅显示图像 2022-01-01
- 获取数字的最后一位 2022-01-01
- java.lang.IllegalStateException:Bean 名称“类别"的 BindingResult 和普通目标对象都不能用作请求属性 2022-01-01
- 在 Java 中,如何将 String 转换为 char 或将 char 转换 2022-01-01
- 如何指定 CORS 的响应标头? 2022-01-01
- 未找到/usr/local/lib 中的库 2022-01-01
 
						 
						 
						 
						 
						 
				 
				 
				 
				