关于POI操作 报错:org.apache.poi.util.LittleEndian.getUnsignedByte([BI)I

报错原因:由对org.apache.poi的不同版本的依赖引起的

原来的依赖:(红色原来版本,蓝色改后版本)

    
   commons-io
   commons-io
   2.5


   org.apache.poi
   poi
   3.17


   org.apache.poi
   poi-ooxml
   3.9


   org.apache.poi
   poi-scratchpad
   3.14


   fr.opensagres.xdocreport
   xdocreport
   1.0.6


   org.apache.poi
   poi-ooxml-schemas
   3.14


   org.apache.poi
   ooxml-schemas
   1.3

改后的依赖:


   commons-io
   commons-io
   2.5


   org.apache.poi
   poi
   3.14


   org.apache.poi
   poi-ooxml
   3.14


   org.apache.poi
   poi-scratchpad
   3.14


   fr.opensagres.xdocreport
   xdocreport
   1.0.6


   org.apache.poi
   poi-ooxml-schemas
   3.14


   org.apache.poi
   ooxml-schemas
   1.3

你可能感兴趣的:(java)