[简单]docx4j样式使用

      自定义样式或者使用word默认样式,如word中的

      
[简单]docx4j样式使用_第1张图片
       关键代码:

      

public P createParagraphOfStyle(String text, String styleId) {
		PPr pPr;
		pPr = Docx4j_Helper.createNewPPr();
		P p = Docx4j_Helper.createParagraphOfText(text, null);
		p.setPPr(pPr);
		org.docx4j.wml.PPrBase.PStyle pStyle = Docx4j_Helper.createNewPPrBasePStyle();
		pPr.setPStyle(pStyle);
		pStyle.setVal(styleId);
		return p;
	}

    具体代码

    
[简单]docx4j样式使用_第2张图片
 
[简单]docx4j样式使用_第3张图片
     结果为:

    
[简单]docx4j样式使用_第4张图片
     全文完。

      

你可能感兴趣的:(docx4j)