2

我目前正在使用 POI 读取 excel 文件,它工作得很好,除了它无法读取旧格式(BIFF5/office 95)的 xls 文件来解决这个问题我正在捕获 OldExcelFormatException,在这种情况下调用一个函数来读取 xls使用 jxl 的文件。我想要实现的是编写相同的代码但不捕获异常。这是当前的工作代码:

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
  }
}
4

1 回答 1

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");
    }
  }
于 2013-03-13T14:22:22.180 回答