开发者

POI 3.5 WorkBook Exception for XML creation?

开发者 https://www.devze.com 2022-12-13 19:07 出处:网络
Ihave downloaded latest POI 3.5 and tried to run sample application for creation of excel sheet.But it is always giving error while exceuting some code like:

I have downloaded latest POI 3.5 and tried to run sample application for creation of excel sheet.But it is always giving error while exceuting some code like:

enter code here
    Workbook wb = new XSSFWorkbook(); //or new HSSFWorkbook();

Generated Exception all the time is:

Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/xmlbeans/XmlException at ExcelSheetCreation.main(ExcelSheetCreation.java:38)

please give solution for the given exception, why is it giving such kind of exception,as i have included all t开发者_高级运维he types of POI 3.5 jars.? What to include more in the project?

Thanks,

Mishal Shah


if you are using Maven, include this dependency:

<dependency>
    <groupId>org.apache.poi</groupId>
    <artifactId>poi-ooxml</artifactId>
    <version>3.5-FINAL</version>
</dependency>

In particular, the problem is beacause you don't have the Apache xmlbeans dependency

<dependency>
    <groupId>org.apache.xmlbeans</groupId>
    <artifactId>xmlbeans</artifactId>
    <version>2.3.0</version>
</dependency>
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号