我已经在 Netbeans 中制作了一个 Java 程序来使用 poi 库编辑 Excel 文件,该代码在 Netbeans 中运行良好,但是在构建 jar 文件并通过命令提示符执行它之后,当调用某个函数时出现错误,即存在外部 jar .
但是我已经在 bulid.xml 中包含了目标代码。在 store 中创建的 jar 文件也不起作用,并且在 dist 文件夹中创建的 jar 文件也给出了这个错误:
Exception in thread "AWT-EventQueue-0" java.lang.Nosuchmethoderror: org.apache.xmlbeans.xmloptions.setsaveaggresivenamespaces()Lorg/apache/xmlbeans/xmloptions;
我已经检查了该类org.apache.xmlbeans.xmloptions
是否存在于 jar 文件中。
有什么想法吗?