透過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...

20,251 Responses

  1. NorbertKep表示:

    Viagra homme prix en pharmacie sans ordonnance: Acheter Viagra Cialis sans ordonnance – Viagra 100mg prix

  2. Jacobbep表示:

    acheter mГ©dicament en ligne sans ordonnance https://kamagrameilleurprix.com/# Pharmacie sans ordonnance

  3. Perryzoozy表示:

    Achat mГ©dicament en ligne fiable pharmacie en ligne sans ordonnance pharmacies en ligne certifiГ©es

  4. WilsonVah表示:

    Viagra sans ordonnance livraison 48h: Acheter Viagra Cialis sans ordonnance – Viagra pas cher livraison rapide france

  5. RodneyBew表示:

    Kra28 at – Кракен тор, кракен ссылка

  6. NorbertKep表示:

    pharmacie en ligne fiable: achat kamagra – pharmacie en ligne france fiable

  7. Richardprurf表示:

    https://kamagrameilleurprix.shop/# pharmacie en ligne fiable
    pharmacie en ligne france livraison belgique

  8. Тут можно преобрести сейф огнестойкий в москве огнеупорный сейф купить

  9. NorbertKep表示:

    acheter mГ©dicament en ligne sans ordonnance: kamagra en ligne – pharmacie en ligne fiable

  10. Richardprurf表示:

    https://viagrameilleurprix.com/# Viagra homme prix en pharmacie
    pharmacie en ligne france livraison belgique

  11. Richardprurf表示:

    https://viagrameilleurprix.shop/# SildГ©nafil 100 mg prix en pharmacie en France
    pharmacie en ligne france livraison internationale

  12. Jacobbep表示:

    vente de mГ©dicament en ligne https://viagrameilleurprix.shop/# Viagra vente libre pays

  13. Jacobbep表示:

    pharmacie en ligne sans ordonnance https://tadalafilmeilleurprix.com/# Pharmacie en ligne livraison Europe

  14. 123 movies表示:

    I am extremely inspired together with your writing talents and also with the layout on your weblog. Is this a paid theme or did you customize it yourself? Anyway stay up the excellent quality writing, it?s uncommon to look a great blog like this one nowadays..

  15. mco 仮想 通貨表示:

    Moreover if you need to go any rural area, you can go by RV rentals.

  16. WilsonVah表示:

    Pharmacie en ligne livraison Europe: Acheter Cialis – pharmacie en ligne pas cher

  17. Perryzoozy表示:

    Pharmacie sans ordonnance acheter kamagra site fiable pharmacie en ligne france pas cher

  18. Ever since the claims first emerged Giovanni has denied all the allegations, claiming to have offered a dossier of evidence to the Beeb investigators and ‘remains totally confident in clearing his identify’.

  19. NorbertKep表示:

    Pharmacie sans ordonnance: pharmacie en ligne pas cher – Pharmacie Internationale en ligne

  20. Jacobbep表示:

    pharmacie en ligne france fiable https://tadalafilmeilleurprix.com/# Pharmacie en ligne livraison Europe

  21. Richardprurf表示:

    https://viagrameilleurprix.com/# Viagra vente libre pays
    pharmacie en ligne fiable

  22. WilsonVah表示:

    pharmacie en ligne avec ordonnance: kamagra en ligne – pharmacie en ligne france livraison belgique

  23. Jacobbep表示:

    acheter mГ©dicament en ligne sans ordonnance https://kamagrameilleurprix.shop/# acheter mГ©dicament en ligne sans ordonnance

  24. Richardprurf表示:

    https://viagrameilleurprix.com/# Acheter viagra en ligne livraison 24h
    Pharmacie en ligne livraison Europe

  25. Richardprurf表示:

    https://pharmaciemeilleurprix.shop/# pharmacie en ligne fiable
    Pharmacie Internationale en ligne

  26. NorbertKep表示:

    pharmacie en ligne: kamagra en ligne – pharmacie en ligne pas cher

  27. WilsonVah表示:

    trouver un mГ©dicament en pharmacie: Cialis sans ordonnance 24h – pharmacie en ligne france fiable

  28. NorbertKep表示:

    Pharmacie Internationale en ligne: kamagra gel – pharmacie en ligne france livraison belgique

  29. Perryzoozy表示:

    pharmacie en ligne france fiable kamagra en ligne pharmacie en ligne france livraison internationale

發佈留言

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