【问题标题】:Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/xmlbeans/XmlException线程“主”java.lang.NoClassDefFoundError 中的异常:org/apache/xmlbeans/XmlException
【发布时间】:2011-02-10 00:31:57
【问题描述】:

我必须在 java.lang.NoClassDefFoundError: org/apache/xmlbeans 中读取 java.lang.NoClassDefFoundError: org/apache/xmlbeans /XmlException at ReadExcel2.main(ReadExcel2.java:38)".

我添加了以下罐子 1)poi-3.6-20091214.jar 2)poi-contrib-3.6-20091214.jar 3)poi-examples-3.6-20091214.jar 4)poi-ooxml-3.6-20091214.jar 5)poi-ooxml-schemas-3.6-20091214.jar 6)poi-scratchpad-3.6-20091214.jar

下面是我正在使用的代码:

import org.apache.poi.ss.usermodel.Workbook;
import org.apache.poi.ss.usermodel.Sheet;
import org.apache.poi.ss.usermodel.Row;
import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
import org.apache.poi.xssf.usermodel.XSSFCell;
import org.apache.poi.xssf.usermodel.XSSFRow;

import java.io.FileInputStream;
import java.io.IOException;
import java.util.Iterator;
import java.util.List;
import java.util.ArrayList;
public class ReadExcel {

    public static void main(String[] args) throws Exception {
        //
        // An excel file name. You can create a file name with a full path
        // information.
        //
        String filename = "C:\\myExcel.xl";
        //
        // Create an ArrayList to store the data read from excel sheet.
        //
        List sheetData = new ArrayList();

        FileInputStream fis = null;
        try {
            //
            // Create a FileInputStream that will be use to read the excel file.
            //
            fis = new FileInputStream(filename);

            //
            // Create an excel workbook from the file system.
            //
           // HSSFWorkbook workbook = new HSSFWorkbook(fis);
            Workbook workbook = new XSSFWorkbook(fis);  

            //
            // Get the first sheet on the workbook.
            //
            Sheet sheet = workbook.getSheetAt(0);

            //
            // When we have a sheet object in hand we can iterator on each
            // sheet's rows and on each row's cells. We store the data read
            // on an ArrayList so that we can printed the content of the excel
            // to the console.
            //
            Iterator rows = sheet.rowIterator();
            while (rows.hasNext()) {
                Row row = (XSSFRow) rows.next();
                Iterator cells = row.cellIterator();

                List data = new ArrayList();
                while (cells.hasNext()) {
                    Cell cell = (XSSFCell) cells.next();
                    data.add(cell);
                }

                sheetData.add(data);
            }
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            if (fis != null) {
                fis.close();
            }
        }

        showExelData(sheetData);
    }
    private static void showExelData(List sheetData) {
        //
        // Iterates the data and print it out to the console.
        //
        for (int i = 0; i < sheetData.size(); i++) {
            List list = (List) sheetData.get(i);
            for (int j = 0; j < list.size(); j++) {
                Cell cell = (XSSFCell) list.get(j);
                System.out.print(cell.getRichStringCellValue().getString());
                if (j < list.size() - 1) {
                    System.out.print(", ");
                }
            }
            System.out.println("");
        }
    }
}

请帮忙。 感谢期待, 问候, 迪拉吉!

【问题讨论】:

    标签: java


    【解决方案1】:

    您的类路径中需要xmlbeans

    NoClassDefFoundError 表示:

    在编译当前执行的类时,搜索到的类定义存在,但无法再找到该定义。

    所以下次遇到这样的异常时,这意味着某些 3rd 方库需要另一个 3rd 方库。然后使用谷歌(或任何其他方式)查找这是哪个库。 此外,大多数库在其文档和/或发行版中清楚地说明了它们的依赖关系。

    【讨论】:

      【解决方案2】:

      JarFinder 建议 XMLBeans.jar

      【讨论】:

        【解决方案3】:

        在 Apache POI 3.16 上出现同样的错误。添加了来自 Apache POI /ooxml-lib/xmlbeans-2.6.0 的以下 jar 以及有关集合 /lib/commons-collections4-4.1.jar 的下一个异常以进行修复。

        【讨论】:

          【解决方案4】:

          我在 linux env 中也遇到过类似的情况,基本上我的 lib 路径级别降低了 1。

          【讨论】:

            猜你喜欢
            • 1970-01-01
            • 2017-03-24
            • 1970-01-01
            • 1970-01-01
            • 2013-09-29
            • 2013-03-19
            • 2018-08-09
            • 2017-11-22
            • 2021-07-22
            相关资源
            最近更新 更多