本帖最后由 陈欢 于 2012-7-20 00:43 编辑
为什么在 strFile存在的情况下,还要抛出异常,异常是:
Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
这是什么问题啊?有点晕,哪位高人请指教,谢谢
jxl.Workbook wb = null; // 创建一个workbook对象
try {
InputStream is = new FileInputStream(new File(strFile)); // 创建一个文件流,读入Excel文件
try {
wb = Workbook.getWorkbook(is);
} catch (BiffException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} // 将文件流写入到workbook对象
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
|
|