能否请您告诉我,在这种情况下我们如何进行,我们有一个表格形式的纯 HTML 数据,应该将其转换为适当的 excel 工作表。
这是我写的源代码,我得到一个异常 --> 错误:无效的标头签名;读取 0x6D78206C6D74683C,预期 0xE11AB1A1E011CFD0|#]
// Resulting byte stream from the DB
resultBytes = dokumentSession.getXlsZuAuftrag(ts);
if (resultBytes != null && resultBytes.length > 0) {
try {
InputStream fos = new ByteArrayInputStream(resultBytes);
HSSFWorkbook workbook = new HSSFWorkbook(fos);
workbook.createSheet("sheet1");
FileOutputStream fileOut = new FileOutputStream("ipa_loader.xls");
workbook.write(fileOut);
fileOut.close();
} catch (Exception e)
{// Catch exception if any
System.err.println("Error: " + e.getMessage());
}
}
请让我知道这方面的任何意见,任何帮助表示赞赏。