what all are the jar dependencies for apache POI for read and write to excel or xls?

前端 未结 2 564
故里飘歌
故里飘歌 2021-01-25 22:18

i am getting runtime with error like java.lang.NoClassDefFoundError: org/apache/xmlbeans/XmlObject because of missing xmlbeans.jar dependency. i need to work with XLS, DOC and .

2条回答
  •  离开以前
    2021-01-25 23:14

    For Apache POI you need these two combination.

    
        org.apache.poi
        poi
        3.12
    
    
        org.apache.poi
        poi-ooxml
        3.12
    
    

提交回复
热议问题