Required maven dependencies for Apache POI to work

前端 未结 10 952
长情又很酷
长情又很酷 2021-01-03 19:17

I want to use Apache POI library to parse excel files (old versions and newer versions of excel). So I was wondering what jars do i need to include from the Apache POI becau

10条回答
  •  别那么骄傲
    2021-01-03 20:10

    ooxml for dealing the .xlsx files and the ooxml refers to the xml, hence we will be needed to refer the below three dependedncies in the pom.xml for the

    
       org.apache.poi
       poi
       3.9
    
    
       xml-apis
       xml-apis
       1.4.01
    
    
       org.apache.poi
       poi-ooxml
       3.9
       
         
           xml-apis
           xml-apis
                
       
    
    

提交回复
热议问题