摘要:
/**读取Excel文件的内容*@paramfile待读取的文件*@return*/publicstaticStringreadExcel(Filefile){ StringBuffersb=newStringBuffer(); Workbookwb=null; try{ //构造Workbook(工作薄)对象wb=Workbook.getWorkbook(file); }catch(BiffExceptione){ e.printStackTrace(); }catch(IOExceptione){ e.printStackTrace(); } if(wb==null) returnnu.. 阅读全文