У меня есть расширение файла .XLS, но я сохранил его как электронную таблицу XMl 2003, хочу прочитать файл и преобразовать его в расширение .XLS с помощью кода Java, мой код ниже -
открытый класс ExcelImport {
public boolean readStream(InputStream stream) throws InvalidFormatException {
boolean success;
try {
byte[] bytes = getBytes(stream);
InputStream wrappedStream = new ByteArrayInputStream(bytes);
Workbook workbook = WorkbookFactory.create(wrappedStream);
//XSSFWorkbook workbook = new XSSFWorkbook(new FileInputStream(wrappedStream.toString()));
for (int i = 0; i <workbook.getNumberOfSheets(); i++) {
Sheet sheet = workbook.getSheetAt(i);
for (Row row : sheet) {
IterateThroughRow(row);
}
}
success = true;
} catch (FileNotFoundException e) {
success = false;
e.printStackTrace();
} catch (IOException e) {
success = false;
e.printStackTrace();
}
return success;
}
private void IterateThroughRow(Row row) {
Iterator<Cell> cellIterator = row.cellIterator();
while (cellIterator.hasNext()) {
Cell cell = cellIterator.next();
switch (cell.getCellType()) {
//do something with the content...
case Cell.CELL_TYPE_STRING:
cell.getStringCellValue();
break;
case Cell.CELL_TYPE_NUMERIC:
cell.getNumericCellValue();
break;
case Cell.CELL_TYPE_BOOLEAN:
cell.getBooleanCellValue();
break;
default:
}
}
}
public static byte[] getBytes(InputStream is) throws IOException {
ByteArrayOutputStream buffer = new ByteArrayOutputStream();
int len;
byte[] data = new byte[100000];
while ((len = is.read(data, 0, data.length)) != -1) {
buffer.write(data, 0, len);
}
buffer.flush();
return buffer.toByteArray();
}
public static void main(String[] args) throws InvalidFormatException, IOException {
ExcelImport excelImport = new ExcelImport();
InputStream is = new FileInputStream("C:/Users/Desktop/Test.xls");
excelImport.readStream(is);
}}
но когда я запускаюсь, это выдает ошибку, как показано ниже -
Исключение в потоке "main" java.lang.IllegalArgumentException: Ваш InputStream не был ни OLE2поток или поток OOXML в org.apache.poi.ss.usermodel.WorkbookFactory.create (WorkbookFactory.java:75)