我用poi-hssf读取了xls文件,一切都是正确的。但是我没有学会如何读取输入文件xlsx。以前,我没有使用xlsx,我在不同的资源上阅读了网络上的资料,除了用xssf替换hssf和连接其他资源外,我没有注意到差异。图书馆。但是,它会抛出一个错误:
线程“main”java.lang.nosuchmethoderror中出现异常:org.apache.poi.util.xmlhelper.newdocumentbuilder()ljavax/xml/parsers/documentbuilder;
咒骂
XSSFWorkbook wb = new XSSFWorkbook (p_file);
def res = SSC.execute (connection, file, "test.xlsx")
下面给出了代码(如果现在/将来有人能帮助解决问题,我将非常感激)不用注意,因为我用的是groovy,剩下的和java差不多):
import groovy.sql.Sql
import org.apache.poi.xssf.usermodel.XSSFCell
import javax.xml.soap.Text
import java.sql.Blob
import java.sql.Connection
import java.sql.DriverManager
import org.apache.poi.ss.usermodel.*
import org.apache.poi.hssf.usermodel.*
import org.apache.poi.xssf.usermodel.XSSFWorkbook; //New imports to read XLSX format
import org.apache.poi.xssf.usermodel.XSSFSheet; //New imports to read XLSX format
import org.apache.poi.ss.usermodel.*;
import java.util.Iterator;
import java.io.*;
class XM_PARSE_XLS {
def execute(Connection conn, InputStream p_file, String p_filename) {
Sql sql = new Sql(conn)
XSSFWorkbook wb = new XSSFWorkbook(p_file);
ArrayList<HashMap<String, String>> arrAllData = new ArrayList<HashMap<String, String>>();
String strsql
Integer cntStr = 0
HashSet rw_okpo = new HashSet();
// идем по листам в файле
wb.each { XSSFSheet myExcelSheet ->
DataFormatter formatter = new DataFormatter(Locale.ROOT);
// идем по страницам файла
myExcelSheet.each{ Row myrow ->
HashMap<String, String> hm = new HashMap<String, String>();
if (cntStr >= 0) {
// идем по строкам с данными
Integer numCell = 0;
String typ = '';
myrow.each { Cell mycell ->
String value = ""; // приводит любые ячейки к строковому формату
// если тип Строка
if (mycell.getCellType() == XSSFCell.CELL_TYPE_STRING) {
value = mycell.getStringCellValue();
typ = 'S'
// если тип число
} else {
// а для числовых ячеек или ячеек даты значение будет отформатировано на основе правил форматирования / стиля, примененных к ячейке, а затем возвращено как строка
value = formatter.formatCellValue(mycell);
value = value.replace(',','');
typ = 'N'
if (cntStr >= 0){
switch(numCell) { //0-17
case 0:
hm.put("t0", value + ";");
break;
case 1:
hm.put("t1", value + ";");
break;
case 2:
hm.put("t2", value + ";");
break;
case 3:
hm.put("t3", value + ";");
break;
case 4:
hm.put("t4", value + ";");
break;
case 5:
hm.put("t5", value + ";");
break;
case 6:
hm.put("t6", value + ";");
break;
case 7:
hm.put("t7", value + ";");
break;
case 8:
hm.put("t8", value + ";");
break;
case 9:
hm.put("t9", value + ";");
break;
case 10:
hm.put("t10", value + ";");
break;
case 11:
hm.put("t11", value + ";");
break;
case 12:
hm.put("t12", value + ";");
break;
case 13:
hm.put("t13", value + ";");
break;
case 14:
hm.put("t14", value + ";");
break;
case 15:
hm.put("t15", value + ";");
break;
case 16:
hm.put("t16", value + ";");
break;
case 17:
hm.put("t17", value + "\r\n");
break;
}
numCell = numCell + 1;
}
}
}
if(hm) arrAllData.add(hm);
cntStr = cntStr + 1;
}
}
return res;
}
static void main(String... args) {
Class.forName("oracle.jdbc.driver.OracleDriver")
//Connection connection = DriverManager.getConnection("jdbc:oracle:thin:@10.193.21.75:3333/OLAP2", "LAS", "ASfDER7F4FA")
connection.setAutoCommit(true)
try {
def file = new File("test.xlsx").newInputStream()
def SSC = new XM_PARSE_XLS()
def res = SSC.execute(connection,file,"test.xlsx")
} finally {
connection.close()
}
}
}
1条答案
按热度按时间fslejnso1#
一
NoSuchMethodError
如果代码使用编译时使用的库版本以外的其他库版本运行,则会发生运行时。这里的代码可能是用
apache poi 4.1.2
但在运行时有一个较低版本的apache poi
用过的。方法
public static DocumentBuilder newDocumentBuilder()
于年引进org.apache.poi.util.XMLHelper
在apache poi 4.1.2
. 它在较低版本中不存在。还要确保你没有混合不同的
apache poi
版本。这是不受支持的,而且可能会导致这样的错误,因为不同的版本也会导出不同版本的方法。见faq-n10204。也许更低版本的
apache poi
类也从其他库中提供。你可以问ClassLoader
一个特殊的班级(org.apache.poi.util.XMLHelper
在您的情况下)来自运行时:如果不是这样的话
jar
你至少可以知道哪个库也提供了这个类。