標籤:
操作步驟:
1.首先到網上傳一下JExcelApi rar包,目前最新是:jexcelapi_2_6_12.tar,然後將其解壓開,將 jxl.jar檔案Copy到WEB-INF\lib目錄下或直接匯入到Java項目中
2.相應的作業碼如下:
package com.xqh.java.test; import java.io.File; import java.io.IOException; import jxl.Cell; import jxl.Sheet; import jxl.Workbook; import jxl.read.biff.BiffException; public class JavaReadExcel { public static void main(String[] args) { try { String fileName = "?:\\...\\XXX.xlsx"; // Excel檔案所在路徑 File file = new File(fileName); // 建立檔案對象 Workbook wb = Workbook.getWorkbook(file); // 從檔案流中擷取Excel工作區對象(WorkBook) Sheet sheet = wb.getSheet(0); // 從工作區中取得頁(Sheet) for (int i = 0; i < sheet.getRows(); i++) { // 迴圈列印Excel表中的內容 for (int j = 0; j < sheet.getColumns(); j++) { Cell cell = sheet.getCell(j, i); System.out.println(cell.getContents()); } System.out.println(); } } catch (BiffException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } } }
本文轉自:http://blog.csdn.net/tkd03072010/article/details/6692366
Java讀取Excel檔案