我目前正在使用POI来读取excel文件并且它工作得很好,除了它无法读取旧格式的xls文件(BIFF5 / office 95)来解决这个问题我正在捕获OldExcelFormatException并且在这种情况下调用一个函数使用jxl读取xls文件。我想要实现的是编写相同的代码,但没有捕获异常。这是当前的工作代码:
public void translate() throws IOException, CmpException
{
ArrayList<String> row = null;
try
{
// create a new org.apache.poi.poifs.filesystem.Filesystem
POIFSFileSystem poifs = new POIFSFileSystem(fin);
w = new HSSFWorkbook(poifs);
}
catch (OldExcelFormatException e) // OldExcelFormatException
{
w = null;
System.out.println("OldExcelFormatException");
translateBIFF5();
}
catch (Exception e) // Any Exception
{
w = null;
}
if (w != null)
{
// read the excel file using POI
}
}
private void translateBIFF5() throws IOException, CmpException
{
ArrayList<String> row = null;
try
{
jxl_w = Workbook.getWorkbook(excelFile);
}
catch (Exception e) // Any Exception
{
jxl_w = null;
}
if (jxl_w != null)
{
// read the excel file using jxl
}
}
答案 0 :(得分:0)
别介意的人。我自己找到了解决方案。诀窍是查看工作簿名称:对于excel 95/97,工作簿名称为“Book”,而对于新格式,工作簿名称为“WorkBook”。所以这是我一直在寻找的编码:
POIFSFileSystem poifs = new POIFSFileSystem(fin);
DirectoryNode directory = poifs.getRoot();
Iterator<Entry> i = directory.getEntries();
while (i.hasNext())
{
Entry e = i.next();
String bookName = e.getName();
if (bookName.equals("Book"))
{
System.out.println("This is an old format");
}
else
{
System.out.println("This is a new format");
}
}