天天看點

java代碼讀取excel資料

遇到問題:需要在j2ee項目中,實作在網頁上傳excel表格,批量導入資料的功能。具體要上傳excel,檢視資料清單,确認處理。

正常來說應該是找前台架構的,不論是直接在浏覽器上提取excel資料,還是上傳到背景再提取資料。然而我偏偏要上傳檔案,再用java打開讀取資料,确認處理後再讀一遍去處理。當然不論我怎麼做,現在都需要java讀取excel資料。

除了上一篇提到的路徑問題,就是讀取資料問題。現在主要有poi包、jxl包等友善操作excel的第三方jar包。這裡使用poi包。【就讓你們見識見識所羅門瘋狗吧poi!

代碼是參考别人的,畢竟檔案流咱不是特别擅長,自己寫很費勁。

java代碼讀取excel資料
package com.**.util;

import java.io.BufferedInputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.text.DecimalFormat;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import javax.servlet.ServletContext;

import org.apache.poi.hssf.usermodel.HSSFCell;
import org.apache.poi.hssf.usermodel.HSSFDateUtil;
import org.apache.poi.hssf.usermodel.HSSFRow;
import org.apache.poi.hssf.usermodel.HSSFSheet;
import org.apache.poi.hssf.usermodel.HSSFWorkbook;
import org.apache.poi.poifs.filesystem.POIFSFileSystem;

import com.****;
import com.**;

/**
 * 讀取excel
 * @author 禦坂鏡
 *
 */
public class LoadExcelUtil {

	/**
	 * 擷取第一列第二行開始的電話号
	 * @param args
	 * @return
	 * @throws Exception
	 */
    public static List<ExcelMes> getNameAndPhone() throws Exception {
       File file = new File("WEB-INF/upload/excel/t.xls");//路徑煩死個人
       String[][] result = getData(file, 1);
       List<ExcelMes> list = new ArrayList<ExcelMes>();
       int rowLength = result.length;
       for(int i=0;i<rowLength;i++) {
//           for(int j=0;j<result[i].length;j++) {
//        	   System.out.print(result[i][j]+"\t\t");
//           }
           ExcelMes e = new ExcelMes();
           e.setName(result[i][0]);
           e.setPhone(result[i][1]);
           list.add(e);
       }
       return list;
    }
    /**
     * 讀取Excel的内容,第一維數組存儲的是一行中格列的值,二維數組存儲的是多少個行
     * @param file 讀取資料的源Excel
     * @param ignoreRows 讀取資料忽略的行數,比喻行頭不需要讀入 忽略的行數為1
     * @return 讀出的Excel中資料的内容
     * @throws FileNotFoundException
     * @throws IOException
     */
    public static String[][] getData(File file, int ignoreRows)
           throws FileNotFoundException, IOException {
       List<String[]> result = new ArrayList<String[]>();
       int rowSize = 0;
       BufferedInputStream in = new BufferedInputStream(new FileInputStream(
              file));
       // 打開HSSFWorkbook
       POIFSFileSystem fs = new POIFSFileSystem(in);
       HSSFWorkbook wb = new HSSFWorkbook(fs);
       HSSFCell cell = null;
       for (int sheetIndex = 0; sheetIndex < wb.getNumberOfSheets(); sheetIndex++) {
           HSSFSheet st = wb.getSheetAt(sheetIndex);
           // 第一行為标題,不取
           for (int rowIndex = ignoreRows; rowIndex <= st.getLastRowNum(); rowIndex++) {
              HSSFRow row = st.getRow(rowIndex);
              if (row == null) {
                  continue;
              }
              int tempRowSize = row.getLastCellNum() + 1;
              if (tempRowSize > rowSize) {
                  rowSize = tempRowSize;
              }
              String[] values = new String[rowSize];
              Arrays.fill(values, "");
              boolean hasValue = false;
              for (short columnIndex = 0; columnIndex <= row.getLastCellNum(); columnIndex++) {
                  String value = "";
                  cell = row.getCell(columnIndex);
                  if (cell != null) {
                     // 注意:一定要設成這個,否則可能會出現亂碼
                     cell.setEncoding(HSSFCell.ENCODING_UTF_16);
                     switch (cell.getCellType()) {
                     case HSSFCell.CELL_TYPE_STRING:
                         value = cell.getStringCellValue();
                         break;
                     case HSSFCell.CELL_TYPE_NUMERIC:
                         if (HSSFDateUtil.isCellDateFormatted(cell)) {
                            Date date = cell.getDateCellValue();
                            if (date != null) {
                                value = new SimpleDateFormat("yyyy-MM-dd")
                                       .format(date);
                            } else {
                                value = "";
                            }
                         } else {
                            value = new DecimalFormat("0").format(cell
                                   .getNumericCellValue());
                         }
                         break;
                     case HSSFCell.CELL_TYPE_FORMULA:
                         // 導入時如果為公式生成的資料則無值
                         if (!cell.getStringCellValue().equals("")) {
                            value = cell.getStringCellValue();
                         } else {
                            value = cell.getNumericCellValue() + "";
                         }
                         break;
                     case HSSFCell.CELL_TYPE_BLANK:
                         break;
                     case HSSFCell.CELL_TYPE_ERROR:
                         value = "";
                         break;
                     case HSSFCell.CELL_TYPE_BOOLEAN:
                         value = (cell.getBooleanCellValue() == true ? "Y"
                                : "N");
                         break;
                     default:
                         value = "";
                     }
                  }
                  if (columnIndex == 0 && value.trim().equals("")) {
                     break;
                  }
                  values[columnIndex] = rightTrim(value);
                  hasValue = true;
              }

              if (hasValue) {
                  result.add(values);
              }
           }
       }
       in.close();
       String[][] returnArray = new String[result.size()][rowSize];
       for (int i = 0; i < returnArray.length; i++) {
           returnArray[i] = (String[]) result.get(i);
       }
       return returnArray;
    }

    /**
     * 去掉字元串右邊的空格
     * @param str 要處理的字元串
     * @return 處理後的字元串
     */
     public static String rightTrim(String str) {
       if (str == null) {
           return "";
       }
       int length = str.length();
       for (int i = length - 1; i >= 0; i--) {
           if (str.charAt(i) != 0x20) {
              break;
           }
           length--;
       }
       return str.substring(0, length);
    }
}
           

參考來源:http://www.jb51.net/article/43713.htm 話說這是個腳本網站,作者也是空的,不知道他是不是也是轉載的