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

24,423 Responses

  1. Arthurhow表示:

    https://interpharmonline.shop/# buying drugs from canada
    best canadian online pharmacy

  2. Carlosgycle表示:

    Строительные бытовки
    Модули и блок-контейнеры: практичное подход для ваших задач
    Модули и передвижные помещения помогают создать место для деятельности, кладовую или временный модуль. Наши специалисты предлагаем здания, которые соответствуют качественным критериям надёжности и удобства.

    Особенности
    Стойкость. Каждая бытовки произведены из элементов, надёжных к испытаниям и внешним воздействиям.
    Оперативность транспортировки. Конструкция доставляется в рамках 1–2 рабочих дней после подтверждения заявки.
    Гибкая настройка. Возможна добавление дополнительной теплоизоляции, электрооборудования или вентиляции.
    Сферы использования
    На строительных объектах для организации склада или создания зоны отдыха.
    Во время событий для размещения зоны регистрации или хранилища техники.
    В качестве временных рабочих зон или управляющих центров.
    Плюсы
    Сокращение сроков. Нет необходимости обустраивать временные здания.
    Комфорт. Условия, которые повышают качество выполнения задач бригады.
    Гибкость. Возможность проката или долгосрочного использования под индивидуальные нужды и ресурсы.
    Опыт внедрения
    Строительная компания использовала передвижной модуль для организации склада инструментов и зоны отдыха. Постройка была привезена за день, с дополнительным утеплением. Заказчик подчеркнул на оптимизацию среды и ликвидацию простоев.

    Как оформить заказ
    Для заключения договора нужно обратиться с нами. Предоставим всю необходимую информацию, поддержим выбрать оптимальное решение и выполним поставку.

  3. TolikIncap表示:

    darkmarket list https://github.com/abacuslink4jjku/abacuslink – darknet market links

  4. Kxyurob表示:

    darknet markets onion address darkmarket list

  5. Montebeera表示:

    mexican drug stores online Mexican Pharm Inter Mexican Pharm Inter

  6. Howardenace表示:

    reliable canadian pharmacy: fda approved canadian online pharmacies – canadian online pharmacy reviews

  7. DonDonrob表示:

    darknet markets url https://github.com/nexusdarkrtv1u/nexusdark – dark markets 2025

  8. Rabyemert表示:

    darknet markets onion address https://github.com/darkwebsitesyhshv/darkwebsites – onion dark website

  9. Arthurhow表示:

    https://mexicanpharminter.shop/# Mexican Pharm International
    adderall canadian pharmacy

  10. Предлагаем услуги профессиональных инженеров офицальной мастерской.
    Еслли вы искали ремонт приставок xbox цены, можете посмотреть на сайте: ремонт приставок xbox
    Наши мастера оперативно устранят неисправности вашего устройства в сервисе или с выездом на дом!

  11. Arthurhow表示:

    https://mexicanpharminter.shop/# reliable mexican pharmacies
    canada pharmacy online

  12. Howardenace表示:

    canadian pharmacy ed medications: Cheapest online pharmacy – maple leaf pharmacy in canada

  13. Montebeera表示:

    cheap canadian pharmacy online Cheapest online pharmacy legal canadian pharmacy online

  14. JamesGag表示:

    MexicanPharmInter: mexican drug stores online – mexican pharmacy online

  15. Louisjus表示:

    Noon Capital is revolutionizing real estate crowdfunding by offering secure, decentralized, and high-yield investment opportunities. Through blockchain-powered property financing, Noon Capital investment platform allows investors to participate in fractional real estate ownership, earn passive income, and diversify their portfolios with full transparency and security. Whether you’re an institutional investor or an individual seeking real estate-backed DeFi solutions, Noon Capital provides a seamless and profitable investment experience. https://noon.ad

  16. Louiemof表示:

    HyperDrive is transforming the way data is stored and managed through decentralized storage and blockchain hosting solutions. Built for security, scalability, and efficiency, HyperDrive enables businesses, developers, and blockchain projects to store and distribute data without relying on centralized servers. By leveraging Web3 technology and distributed networks, HyperDrive ensures reliable, censorship-resistant, and high-performance storage solutions for the digital era. https://hyperdrive.ink

  17. Williszew表示:

    https://indiamedfast.shop/# india online pharmacy store

  18. pdacenter.ru – сервис по ремонту бытовой техники
    Ремонт парогенераторов в Нижним Новгороде в официальном сервисном центре PDACENTER.
    Наши инженеры выполняют ремонт любой сложности по дотупным ценам!

  19. StephenDat表示:

    Kyros Finance is redefining the DeFi investment landscape by offering secure, scalable, and high-yield crypto solutions. With a focus on decentralized financial tools, Kyros Finance provides users with staking, lending, and automated yield farming strategies to maximize returns. Whether you’re a retail investor or an institutional participant, Kyros Finance ensures efficient, transparent, and secure access to the world of decentralized finance. https://kyros.ink

  20. Williamevads表示:

    A librarian ran off with a yacht captain in the summer of 1968. It was the start of an incredible love story
    metamask
    The first time Beverly Carriveau saw Bob Parsons, she felt like a “thunderbolt” passed between them.

    “This man stepped out of a taxi, and we both just stared at each other,” Beverly tells CNN Travel today. “You have to remember, this is the ‘60s. Girls didn’t stare at men. But it was a thunderbolt.”

    It was June 1968. Beverly was a 23-year-old Canadian university librarian on vacation in Mazatlan, Mexico, with a good friend in tow.

    Beverly had arrived in Mazatlan that morning. She’d been blown away by the Pacific Ocean views, the colorful 19th-century buildings, the palm trees.

    Now, Beverly was browsing the hotel gift store, admiring a pair of earrings, when she looked up and spotted the man getting out of the taxi. The gift shop was facing the parking lot, and there he was.

    “I was riveted,” says Beverly. “He was tall, handsome…”

    Eventually, Beverly tore away her gaze, bought the earrings and dashed out of the store.

    “We locked eyes so long, I was embarrassed,” she says.

    No words had passed between them. They hadn’t even smiled at each other. But Beverly felt like she’d revealed something of herself. She felt like something had happened, but she couldn’t describe it.
    Beverly rushed to meet her friend, still feeling flustered. Over dinner in the hotel restaurant, Beverly confided in her friend about the “thunderbolt” moment.

    “I told my girlfriend, ‘Something just happened to me. I stared at this man, and I couldn’t help myself.’”

    Then, the server approached Beverly’s table.

    “He said, ‘I have some wine for you, from a man over there.’”

    The waiter was holding a bottle of white wine, indicating at the bar, which was packed with people.

    As a rule, Beverly avoided accepting drinks from men in bars. She never felt especially comfortable with the power dynamic — plus, she had a long-term partner back in Canada.

    “I had a serious boyfriend at home and thought my life was on course,” she says.

發佈留言

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