透過Java解析Excel檔案

也是一個工作中遇到的情境,很多單位想讓內部人員利用Excel維護資料(因為維護上比較簡單方便),且想讓這份資料透過網頁呈現給一般網友閱讀,所以整體後端的流程應該是:

  1. 將維護的Excel透過網頁介面上傳
  2. 將上傳的Excel轉換成XML
  3. 網頁去讀取這份XML來呈現

透過以上的三個步驟,就可以完成客戶想要效果。

本範例展示的是讀取Excel的XLS格式(新版Excel為XLSX格式),並轉換成陣列的方法(寫入XML在前面的範例就有了),我們選用讀取Excel的Library是Apache POI,而檔內已經有以下的資料,其中Total是公式欄位,計算Price x Quantity:

IDNamePriceQuantityTotal
100001產品名稱110550
100002產品名稱22010200
100003產品名稱33015450

以下是讀取的程式範例:

package CDIT.stanley;

import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.Iterator;
import org.apache.poi.hssf.usermodel.HSSFCell;
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;


public class excelToXMLFullSample {
	
	static ArrayList<ArrayList<String>> excelData = new ArrayList<ArrayList<String>>();
	
	public static void main (String[] args) throws FileNotFoundException{
		
		excelData.clear();
	    
	    String xlsPath = "C:\\Projects\\Javas\\sample.xls";
	    InputStream inputStream = null;
	    inputStream = new FileInputStream (xlsPath);
		POIFSFileSystem fileSystem = null;
	    try {
	        fileSystem = new POIFSFileSystem (inputStream);
			@SuppressWarnings("resource")
			HSSFWorkbook workBook = new HSSFWorkbook (fileSystem);
	        HSSFSheet sheet = workBook.getSheetAt (0);
	        Iterator<?> rows = sheet.rowIterator ();
	        
	        while (rows.hasNext ()){
	            HSSFRow row = (HSSFRow) rows.next();
	            Iterator<?> cells = row.cellIterator ();

	            ArrayList<String> rowData = new ArrayList<String>();
	            
	            while (cells.hasNext ()){
	                HSSFCell cell = (HSSFCell) cells.next();
	                
	                switch (cell.getCellTypeEnum()){
		                case STRING :{
		                    rowData.add(cell.getStringCellValue());
		                    break;
		                }
		                case NUMERIC : {
		                    rowData.add((int)cell.getNumericCellValue() + "");
			                break;
		                }
		                case FORMULA :{
		                	switch(cell.getCachedFormulaResultTypeEnum()) {
			                    case STRING:
			                    	rowData.add(cell.getStringCellValue ());
			                        break;
			                    case NUMERIC:
			                    	rowData.add((int)cell.getNumericCellValue() + "");
			                        break;
					default:
						rowData.add("");
						break;
		                	}
		                }		                
			default:
				rowData.add("");
				break;
	                }
	            }
	            excelData.add(rowData);
	        }
	    } catch(IOException e){
	        System.out.println("IOException " + e.getMessage());
	        System.out.println("轉換失敗,請檢查Excel檔案與格式是否正確");
	    }
	    for(int i=0 ; i<excelData.size(); i++){
	    	System.out.println("Excel Row "+ i +" Data : " + excelData.get(i));
	    }
	    
	}
}

程式會把Excel內的資料轉換為ArrayList,輸出內容如下:

Excel Row 0 Data : [Product ID, Product Name, Product Price, Quantity, Total]
Excel Row 1 Data : [100001, 產品名稱1, 10, 5, 50, ]
Excel Row 2 Data : [100002, 產品名稱2, 20, 10, 200, ]
Excel Row 3 Data : [100003, 產品名稱3, 30, 15, 450, ]

You may also like...

14,788 Responses

  1. WilliamTeath表示:

    farmacia en casa online descuento: farmacia online barcelona – farmacias online seguras en espaГ±a

  2. Donaldcoums表示:

    farmaci senza ricetta elenco: farmacie online affidabili – п»їFarmacia online migliore

  3. O lugar perfeito para jogar jogos de cassino Blaze

  4. Roberthep表示:

    farmacia online barcelona farmacia online envГ­o gratis farmacia barata

  5. RalphSnize表示:

    pharmacie en ligne france livraison internationale: pharmacie en ligne france livraison belgique – pharmacies en ligne certifiГ©es

  6. AntoniaSut表示:

    farmacias direct: farmacias online baratas – farmacia online madrid

  7. AntoniaSut表示:

    online apotheke rezept: online apotheke deutschland – europa apotheke

  8. WilliamTeath表示:

    farmacia online madrid: farmacias online seguras – farmacias online seguras en espaГ±a

  9. Casa de apostas com a melhor reputacao Blaze

  10. AntoniaSut表示:

    online apotheke versandkostenfrei: beste online-apotheke ohne rezept – shop apotheke gutschein

  11. RalphSnize表示:

    pharmacie en ligne pas cher: trouver un mГ©dicament en pharmacie – pharmacie en ligne sans ordonnance

  12. Qmhdtw表示:

    acne medication sergeant – acne treatment investigation acne medication size

  13. Cassinos com a melhor reputacao Blaze

  14. Um lider entre os cassinos on-line Blaze

  15. Jimmielic表示:

    https://cheapestcanada.shop/# safe canadian pharmacy

  16. Jimmielic表示:

    https://cheapestandfast.shop/# meds online without prescription

  17. ThomasPaW表示:

    заказ такси в новочеркасске недорого вызов такси по телефону.

  18. Experimente o melhor cassino Blaze

  19. Jimmielic表示:

    https://cheapestindia.com/# best online pharmacy india

  20. StevenPably表示:

    https://cheapestcanada.shop/# canadian pharmacy antibiotics

  21. StevenPably表示:

    http://cheapestcanada.com/# legitimate canadian pharmacy online

  22. StevenPably表示:

    https://cheapestmexico.shop/# mexican border pharmacies shipping to usa

  23. Terryclews表示:

    canadian prescription pharmacy: 36and6health – cheapest pharmacy to fill prescriptions without insurance

  24. CharlesEmpit表示:

    medication from mexico pharmacy п»їbest mexican online pharmacies medicine in mexico pharmacies

  25. CharlesEmpit表示:

    best no prescription online pharmacies cheapest and fast how to get a prescription in canada

  26. StevenPably表示:

    https://cheapestcanada.com/# canadian pharmacy india

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。