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

8,957 Responses

  1. GeorgegaifF表示:

    prednisone 20mg price prednisone pak

  2. kamagra soft tabs kamagra overnight delivery is kamagra oral jelly illegal what is kamagra gold used for

  3. cheap viagra online vardenafil vs viagra kamagra oral jelly 100mg suppliers australia where to buy viagra

  4. Hmm it appears like your blog ate my first comment (it was super long) so I guess I’ll just sum it up what I had written and say, I’m thoroughly enjoying your blog. I too am an aspiring blog blogger but I’m still new to the whole thing. Do you have any tips for beginner blog writers? I’d definitely appreciate it.

  5. GeorgegaifF表示:

    zithromax cost australia zithromax order online uk

  6. Glad to be one of the visitants on this amazing internet site : D.

  7. Stepheninsug表示:

    cheap clomid clomid order online

  8. It¦s actually a cool and useful piece of information. I am glad that you just shared this useful information with us. Please stay us informed like this. Thank you for sharing.

  9. qnfkjoak表示:

    https://hydroxychloroquinex.com/ hydroxychloroquine canada order online

  10. WoW decent article. Can I hire you to guest write for my blog? If so send me an email!

  11. Just stumble upon your blog from from time to time. nice article

  12. Only a smiling visitor here to share the love (:, btw outstanding style and design .

  13. Atosylor表示:

    buy viagra uk boots http://bluethshop.com what is viagra for men

  14. expired viagra how much does cialis cost without insurance where can i buy viagra in melbourne what does viagra do for females

  15. neurontin tablets gabapentin brand name australia neurontin class action law suit gabapentin 300 mg what is it used for

  16. Hello there, I discovered your web site via Google whilst looking for a comparable topic, your web site got here up,
    it seems great. I have bookmarked it in my google bookmarks.

    Hello there, just was aware of your blog through Google, and found that
    it is really informative. I’m gonna watch out for brussels.
    I’ll be grateful in case you proceed this in future.
    A lot of other folks will probably be benefited from your
    writing. Cheers!

  17. wlgjbnxn表示:

    plaquenil tablets 200mg buy online hydroxychloroquine online otc

  18. tiexwift表示:

    generic hydroxychloroquine 200 mg buy plaquenil 200mg plaquenil indications

  19. My brother suggested I might like this websiteHe was once totally rightThis post truly made my dayYou can not imagine simply how a lot time I had spent for this information! Thanks!

  20. game bai表示:

    Very Interesting Information! Thank You For Thi Information!

  21. cialis pharmacy viagra for sale best online cialis pharmacy reviews where can i get cialis without a prescription

  22. butrans topamax zanaflex tizanidine cheap will zanaflex show up on drug test what muscle relaxer is stronger out of baclofen and zanaflex?

  23. E Sigara表示:

    Pretty nice post. I just stumbled upon your blog and
    wished to say that I have really enjoyed surfing around your blog posts.
    After all I’ll be subscribing to your rss feed and I hope you write again soon!

  24. Hi there to every body, it’s my first pay a quick
    visit of this webpage; this website carries awesome and actually fine stuff designed for visitors.

  25. Every weekend i used to pay a visit this web page, for
    the reason that i want enjoyment, since this this web page conations
    in fact pleasant funny data too.

發佈留言

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