Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/xmlbeans/XmlObject at utility.ExcelUtils.setExcelFile
Exception
in thread "main" java.lang.NoClassDefFoundError:
org/apache/xmlbeans/XmlObject
Error: Exception in thread
"main" java.lang.NoClassDefFoundError: org/apache/xmlbeans/XmlObject
Solution:
There
are two ways we can resolve this issue:
1st
solution:
1. Include two more jar.
xmlbeans-2.3.0.jar
dom4j-1.6.1.jar
2. You must use
HSSFWorkbook instead of XSSFWorkbook
after add jar.
Note: It is
required for the files with .xlsx formats only, not for just .xls formats
2nd
Solution:
Just change your file format from xlsx to xls
Happy Testing!!!
Comments
Post a Comment