在Java程序中引入jar包,如下图:
在IDEA项目文件夹下存入需要用于测试的Word文档。
在程序中键入如下代码内容:
import com.spire.doc.*;
import com.spire.doc.documents.Paragraph;
public class RemoveTOC {
public static void main(String[]args){
//加载包含目次的Word文档
Document doc = new Document();
doc.loadFromFile("sample.docx");
//获取section
Section section = doc.getSections().get(0);
//遍历段落
for (int i = 0; i < section.getParagraphs().getCount(); i++)
{
Paragraph paragraph = section.getParagraphs().get(i);
if (paragraph.getStyleName().matches("TOC\\w+"))
{
section.getParagraphs().removeAt(i);//删除目次
i--;
}
}
//保留文档
doc.saveToFile("RemoveTOC.docx", FileFormat.Docx_2013);
doc.dispose();
}
}
执行程序,生当作文档,如下图,
文件路径可自界说。
0 篇文章
如果觉得我的文章对您有用,请随意打赏。你的支持将鼓励我继续创作!