本文将介绍如何通过spire.doc for java 在word中插入分页符和分节符。
import com.spire.doc.*;
import com.spire.doc.documents.breaktype;
import com.spire.doc.documents.sectionbreaktype;
public class addpagebreakandsectionbreak {
public static void main(string[] args){
//加载测试文档
document doc = new document("test.docx");
section sec= doc.getsections().get(0);
//插入分页符
sec.getparagraphs().get(3).appendbreak(breaktype.page_break);
//插入分节符(4种情况)
sec.getparagraphs().get(8).insertsectionbreak(sectionbreaktype.no_break);//新节与前文内容连续
//sec.getparagraphs().get(8).insertsectionbreak(sectionbreaktype.new_page);//新节从新一页开始
//sec.getparagraphs().get(8).insertsectionbreak(sectionbreaktype.even_page);//新节从偶数页开始
//sec.getparagraphs().get(8).insertsectionbreak(sectionbreaktype.oddpage);//新节从奇数页开始
//保存文档
doc.savetofile("result.docx",fileformat.docx_2010);
}
}
分页符、分节符插入效果: