博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
poi获取word批注
阅读量:6315 次
发布时间:2019-06-22

本文共 1562 字,大约阅读时间需要 5 分钟。

package test;import java.io.File;import java.io.FileInputStream;import java.io.FileNotFoundException;import java.io.IOException;import java.io.InputStream;import org.apache.poi.xwpf.model.XWPFCommentsDecorator;import org.apache.poi.xwpf.usermodel.XWPFDocument;import org.apache.poi.xwpf.usermodel.XWPFParagraph;/** * 获取word批注 poi3.14 * @author Administrator * */public class GetPiZhuFromWord {	private static XWPFDocument comments;	public static File getFile(String sampleFileName) {        File f = new File(sampleFileName);        return f;    }	public static InputStream openResourceAsStream(String sampleFileName) {        File f = getFile(sampleFileName);        try {            return new FileInputStream(f);        } catch (FileNotFoundException e) {            throw new RuntimeException(e);        }    }		public static XWPFDocument openSampleDocument(String sampleName) throws IOException {        InputStream is = openResourceAsStream(sampleName);        return new XWPFDocument(is);    }	public static void set() throws IOException {        comments = openSampleDocument("C:\\WordWithAttachments.docx");    }	public static void main(String[] args) throws IOException{		set();		testComments();	}	 public static void testComments() {		int numComments = 0;        for (XWPFParagraph p : comments.getParagraphs()) {            XWPFCommentsDecorator d = new XWPFCommentsDecorator(p, null);            if (d.getCommentText().length() > 0) {                numComments++;                System.out.println(d.getCommentText());            }        }	}		}

  

转载地址:http://kdkaa.baihongyu.com/

你可能感兴趣的文章
解析大型.NET ERP系统核心组件 查询设计器 报表设计器 窗体设计器 工作流设计器 任务计划设计器...
查看>>
修复PLSQL Developer 与 Office 2010的集成导出Excel 功能
查看>>
自己封装了一个EF的上下文类.,分享一下,顺便求大神指点
查看>>
对于资源上MissingScript的清理方案讨论
查看>>
机器学习中的范数规则化之(二)核范数与规则项参数选择 非常好,必看
查看>>
ECMAScript —— 学习笔记(思维导图版)
查看>>
调试的时候 line not available!
查看>>
解读Nodejs多核处理模块cluster
查看>>
谈谈ILDasm的功能限制与解除
查看>>
Android studio听云接入另外一种方式
查看>>
新建tomcat的server服务,在左侧项目浏览处,右键空白的地方,选择new,再选择other选项...
查看>>
使用innodb_force_recovery解决MySQL崩溃无法重启问题
查看>>
C++中new与delete问题学习
查看>>
xml中数据存储 <![CDATA[ … ]]>
查看>>
set集合_定长
查看>>
USB枚举过程【转】
查看>>
C++模板 静态成员 定义(实例化)
查看>>
eclipse+Java2WSDL+WSDL2Java 2012-12-06 12:32:43| 分类: j2ee |报道|字体大小 认购 一、eclipse如何使用低axis生成wsdl 可...
查看>>
Java多线程12:ReentrantLock中的方法
查看>>
github如何删除一个repository(仓库)
查看>>