- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我已经使用 apache poi 完成了 Excel 工作表的读取和写入。但是如果我尝试使用相同的 apache poi 下载 ms-word,则会抛出以下错误。java.lang.IllegalAccessError:尝试从类 org.apache.poi.openxml4j.opc.ZipPackage 访问方法 org.apache.poi.util.POILogger.log(ILjava/lang/Object;)V
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<version>3.13</version>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>3.13</version>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml-schemas</artifactId>
<version>3.13</version>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-scratchpad</artifactId>
<version>3.13</version>
</dependency>
esp.setContentType("application/msword");
resp.setHeader("Content-Disposition", "attachment;filename=\"" + "xx.docx" + "\"");
XWPFDocument document= new XWPFDocument();
XWPFParagraph paragraph = document.createParagraph();
paragraph.setAlignment(ParagraphAlignment.CENTER);
XWPFRun run=paragraph.createRun();
run.setText("The endeavour started by Mohtashim, an AMU " +
"alumni, who is the founder and the managing director " +
"of Tutorials Point (I) Pvt. Ltd. He came up with the " +
"website tutorialspoint.com in year 2006 with the help" +
"of handpicked freelancers, with an array of tutorials" +
" for computer programming languages. ");
OutputStream outputStream = resp.getOutputStream();
PrintStream stream = new PrintStream(outputStream);
document.write(stream);
请给我解决这个问题
最佳答案
我使用他的 Maven 依赖项并编写我的测试代码
这是我的代码👇
import java.io.FileOutputStream;
import org.apache.poi.xwpf.usermodel.ParagraphAlignment;
import org.apache.poi.xwpf.usermodel.XWPFDocument;
import org.apache.poi.xwpf.usermodel.XWPFParagraph;
import org.apache.poi.xwpf.usermodel.XWPFRun;
public class SampleWord {
public static void main(String[] args) throws Exception{
XWPFDocument document= new XWPFDocument();
XWPFParagraph paragraph = document.createParagraph();
paragraph.setAlignment(ParagraphAlignment.CENTER);
XWPFRun run=paragraph.createRun();
run.setText("The endeavour started by Mohtashim, an AMU " +
"alumni, who is the founder and the managing director " +
"of Tutorials Point (I) Pvt. Ltd. He came up with the " +
"website tutorialspoint.com in year 2006 with the help" +
"of handpicked freelancers, with an array of tutorials" +
" for computer programming languages. ");
FileOutputStream fileOut = new FileOutputStream("/Users/chenpengye/Documents/excel/test/test.docx");
document.write(fileOut);
document.close();
}
}
但是,没有出现任何错误;
关于java.lang.IllegalAccessError : tried to access method org. org.apache.poi.openxml4j.opc.ZipPackage 类中的 apache.poi.util.POILogger.log,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34630209/
我在 MSDN 上看到了关于 ZipPackage class 的文档. 上面的例子不是很有用,谁能提供一个关于这个类的例子? 最佳答案 举个例子,注意: - ZipPackage 似乎不压缩 - 生
我对这两个类感到困惑,它们似乎都用于创建或提取 zip 文件?谁能解释一下区别? 最佳答案 ZipPackage 类 - 实现抽象 Package 基类的派生子类——ZipPackage 类使用 ZI
本文整理了Java中org.apache.poi.openxml4j.opc.ZipPackage.getPackageProperties()方法的一些代码示例,展示了ZipPackage.getP
本文整理了Java中org.apache.poi.openxml4j.opc.ZipPackage.throwExceptionIfReadOnly()方法的一些代码示例,展示了ZipPackage.
本文整理了Java中org.apache.poi.openxml4j.opc.ZipPackage.save()方法的一些代码示例,展示了ZipPackage.save()的具体用法。这些代码示例主要
本文整理了Java中org.apache.poi.openxml4j.opc.ZipPackage.openZipEntrySourceStream()方法的一些代码示例,展示了ZipPackage.
本文整理了Java中org.apache.poi.openxml4j.opc.ZipPackage.getPartsByRelationshipType()方法的一些代码示例,展示了ZipPackag
本文整理了Java中org.apache.poi.openxml4j.opc.ZipPackage.addPackagePart()方法的一些代码示例,展示了ZipPackage.addPackage
本文整理了Java中org.apache.poi.openxml4j.opc.ZipPackage.()方法的一些代码示例,展示了ZipPackage.()的具体用法。这些代码示例主要来源于Githu
本文整理了Java中org.apache.poi.openxml4j.opc.ZipPackage.getParts()方法的一些代码示例,展示了ZipPackage.getParts()的具体用法。
本文整理了Java中org.apache.poi.openxml4j.opc.ZipPackage.getRelationshipsByType()方法的一些代码示例,展示了ZipPackage.ge
本文整理了Java中org.apache.poi.openxml4j.opc.ZipPackage.flush()方法的一些代码示例,展示了ZipPackage.flush()的具体用法。这些代码示例
本文整理了Java中org.apache.poi.openxml4j.opc.ZipPackage.getZipArchive()方法的一些代码示例,展示了ZipPackage.getZipArchi
本文整理了Java中org.apache.poi.openxml4j.opc.ZipPackage.getRelationships()方法的一些代码示例,展示了ZipPackage.getRelat
我正在尝试使用 NPOI 在 C# 中读取 excel 文件。下面是我用来初始化变量的代码片段。但是在初始化工作簿时,下面是我遇到的异常。 public class Excelhandler {
我已经使用 apache poi 完成了 Excel 工作表的读取和写入。但是如果我尝试使用相同的 apache poi 下载 ms-word,则会抛出以下错误。java.lang.IllegalAc
我是一名优秀的程序员,十分优秀!