java.lang.ClassNotFoundException: org.apache.xmlbeans.XmlOptions

后端 未结 3 486
無奈伤痛
無奈伤痛 2021-01-28 15:23

I am trying to use POI in a servlet to process an uploaded file as Excel file:

public static String readExcel(InputStream inp) {
    // InputStream inp = null;
          


        
3条回答
  •  夕颜
    夕颜 (楼主)
    2021-01-28 16:14

    System couldn't find the XML beans dependency on your classpath so you should add the XML beans dependency to your class path.

    The XML beans library looks like xmlbeans-x.x.x.jar

    https://mvnrepository.com/artifact/org.apache.xmlbeans/xmlbeans

提交回复
热议问题