//jar包下载地址:http://download.csdn.net/detail/ayearlater/3896587java
import java.io.File; import java.io.IOException; import jxl.Cell; import jxl.Sheet; import jxl.Workbook; import jxl.read.biff.BiffException; public class ReadExcel { /** * 读取Excel文件的内容 * * @param file * 待读取的文件 * @return */ public static String readExcel(File file) { StringBuffer sb = new StringBuffer(); Workbook wb = null; try { // 构造Workbook(工做薄)对象 wb = Workbook.getWorkbook(file); } catch (BiffException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } if (wb == null) return null; // 得到了Workbook对象以后,就能够经过它获得Sheet(工做表)对象了 Sheet[] sheet = wb.getSheets(); if (sheet != null && sheet.length > 0) { // 对每一个工做表进行循环 for (int i = 0; i < sheet.length; i++) { // 获得当前工做表的行数 int rowNum = sheet[i].getRows(); for (int j = 0; j < rowNum; j++) { // 获得当前行的全部单元格 Cell[] cells = sheet[i].getRow(j); if (cells != null && cells.length > 0) { // 对每一个单元格进行循环 for (int k = 0; k < cells.length; k++) { // 读取当前单元格的值 String cellValue = cells[k].getContents(); sb.append(cellValue + "\t"); } } sb.append("\r\n"); } sb.append("\r\n"); } } // 最后关闭资源,释放内存 wb.close(); return sb.toString(); } public static void main(String[] args) { String pathname = "";//放入excel名字 String str = ReadExcel.readExcel(new File( pathname)); System.out.println(str); } }