oo后 2022-01-05 21:47 采纳率: 0%
浏览 155
已结题

已在lib目录下导入xmlbeans 包,但运行显示缺少xmlbeans包

错误信息:
读取docx文件时XWPFWordExtractor(OPCPackage)错误
Multiple markers at this line
- The constructor XWPFWordExtractor(OPCPackage) refers to the missing type XmlException
- The type org.apache.xmlbeans.XmlException cannot be resolved. It is indirectly referenced from
required .class files
错误信息The constructor XWPFWordExtractor(OPCPackage) refers to the missing type XmlException
原因:缺少xmlbeans包

源代码:

package com.test;

import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import org.apache.poi.hwpf.HWPFDocument;

public class Test {
    public void readDoc(String path) throws IOException {
        File f = new File(path);
        InputStream is = new FileInputStream(f);
        HWPFDocument  doc = new HWPFDocument(is);
        System.out.println(doc.getDocumentText());
    }
    
    public static void main(String[] args) {
        Test t = new Test();
        try {
            t.readDoc("C:/Users/Administrator/Desktop/test.doc");
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }
}



  • 写回答

9条回答 默认 最新

  • 关注
    获得1.00元问题酬金

    在lib里面有不等于加到了项目,鼠标右键点击项目名称-》Build Path->Confirgure Build Path,查看列表里面有没有jar

    img

    评论 编辑记录

报告相同问题?

问题事件

  • 系统已结题 1月13日
  • 赞助了问题酬金 1月5日
  • 创建了问题 1月5日

悬赏问题

  • ¥15 需要写计算过程,不要写代码,求解答,数据都在图上
  • ¥15 向数据表用newid方式插入GUID问题
  • ¥15 multisim电路设计
  • ¥20 用keil,写代码解决两个问题,用库函数
  • ¥50 ID中开关量采样信号通道、以及程序流程的设计
  • ¥15 U-Mamba/nnunetv2固定随机数种子
  • ¥15 vba使用jmail发送邮件正文里面怎么加图片
  • ¥15 vb6.0如何向数据库中添加自动生成的字段数据。
  • ¥20 在easyX库下编写C语言扑克游戏跑的快,能实现简单的人机对战
  • ¥15 svpwm波形异常求解答