- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我正在尝试编写一段代码来读取 docx 文件,但由于某些奇怪的原因它失败了。
这一行失败了:
XWPFDocument document = new XWPFDocument(new FileInputStream(filepath));
堆栈跟踪:
Exception in thread "main" java.lang.NoSuchMethodError: org.openxmlformats.schemas.wordprocessingml.x2006.main.CTTbl.getTrList()Ljava/util/List;
at org.apache.poi.xwpf.usermodel.XWPFTable.<init>(XWPFTable.java:106)
at org.apache.poi.xwpf.usermodel.XWPFDocument.onDocumentRead(XWPFDocument.java:151)
at org.apache.poi.POIXMLDocument.load(POIXMLDocument.java:159)
at org.apache.poi.xwpf.usermodel.XWPFDocument.<init>(XWPFDocument.java:124)
at helper.JavaHelper.readTableDataFull(JavaHelper.java:84)
at helper.JavaHelper.main(JavaHelper.java:138)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at com.intellij.rt.execution.application.AppMain.main(AppMain.java:134)
我有那些 jar :
看起来它应该对我有用(我也尝试使用较新的 poi 库 - 同样的错误)。
有什么想法吗?
最佳答案
快速浏览 Grepcode说明缺少的方法在 ooxml-schemas
的 v1.1
中受支持。而且 v1.0
似乎不包含这样的方法(它只包含一个 getTrArray()
方法)。
所以您可能想使用 ooxml-schemas-1.1.jar
而不是 ooxml-schemas-1.0.jar
。
这是您至少应该使用的版本的 Maven 依赖项:
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>ooxml-schemas</artifactId>
<version>1.1</version>
</dependency>
关于java.lang.NoSuchMethodError : org. openxmlformats.schemas.wordprocessingml.x2006.main.CTTbl.getTrList()Ljava/util/List 同时使用 Apache POI 库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26854838/
使用 apache POI 和 openxmlformats,我正在构建一个带有条形图的 Excel。一切正常,但现在我想更改轴的颜色和主要网格线以及字体大小,但我找不到执行此操作的方法。 我怎样才能
使用 apache POI 和 openxmlformats,我正在构建一个带有条形图的 Excel。我制作条形图的方式是: private static CTChart createBarChart
本文整理了Java中org.apache.poi.xwpf.converter.core.openxmlformats.ZipArchive类的一些代码示例,展示了ZipArchive类的具体用法。这
当我尝试编译项目时,出现org.openxmlformats.schemas.officeDocument.x2006.docPropsVTypes.CTArray not found错误。我读到这与
我有一个返回 *.docx 文件(使用 docx4j 生成)的 spring mvc 应用程序。我将它们发送到内容类型为“application/vnd.openxmlformats-officedo
1 我想在 Excel 中使用 Apache POI 和 OpenXmlFormats 在图表中绘制三条线,但是我可以绘制两条线,但无法绘制第三条线,我不知道为什么。请帮助我在一张图中绘制三条线。我正
尝试使用以下代码片段使用 apache POI OOXML 验证签名的 docx 文件时。 OPCPackage pkg = OPCPackage.open(inputStream);
本文整理了Java中org.apache.poi.xwpf.converter.core.openxmlformats.ZipArchive.wildcardToRegex()方法的一些代码示例,展示
本文整理了Java中org.apache.poi.xwpf.converter.core.openxmlformats.ZipArchive.getEntryOutputStream()方法的一些代码
本文整理了Java中org.apache.poi.xwpf.converter.core.openxmlformats.ZipArchive.getEntryInputStream()方法的一些代码示
本文整理了Java中org.apache.poi.xwpf.converter.core.openxmlformats.ZipArchive.isTrackLastModified()方法的一些代码示
本文整理了Java中org.apache.poi.xwpf.converter.core.openxmlformats.ZipArchive.writeZipEntry()方法的一些代码示例,展示了Z
本文整理了Java中org.apache.poi.xwpf.converter.core.openxmlformats.ZipArchive.()方法的一些代码示例,展示了ZipArchive.()的
本文整理了Java中org.apache.poi.xwpf.converter.core.openxmlformats.ZipArchive.setEntry()方法的一些代码示例,展示了ZipArc
本文整理了Java中org.apache.poi.xwpf.converter.core.openxmlformats.ZipArchive.hasEntry()方法的一些代码示例,展示了ZipArc
我得到一个 ClassNotFoundException 用于 org.openxmlformats.schemas.spreadsheetml.x2006.main.CTWorkbook 包含在 p
我正在努力生成一个幻灯片演示文稿。每张幻灯片都有一个图表(条形图或饼图)。我正在使用 Apache POI 库和 org.openxmlformats。 我能够为图表绘制数据表,但无法为图表绘制数据标
我正在尝试访问现有的 Excel 工作表并尝试创建一个新工作表并使用一些值更新工作表,在执行时我收到以下行“rowHeader.createCell((short) count).setCellVal
我使用示例:http://svn.apache.org/repos/asf/poi/trunk/src/examples/src/org/apache/poi/ss/examples/Business
我提供了一个可以从我的网站下载的文件,该文件正在运行。不过,我在 Chrome 中注意到了这种行为。 我认为我设置了正确的 MIME 类型,但 Chrome 正在显示此消息,并且还将请求标记为红色。
我是一名优秀的程序员,十分优秀!