有效地解析Java中的Excel数据

时间:2013-05-12 13:06:14

标签: java xml excel apache-poi

我应该实现一个Java应用程序,该应用程序应该从excel电子表格中检索数据并将其链接到我已创建的某些对象,以便对它们应用一些计算,然后显示结果。

关于应用

==> excel电子表格是一项调查,用于衡量银行客户对银行服务的满意度 ==>应用程序应解析电子表格中的数据,并对其进行一些计算 ==>应使用交互式GUI显示结果。

到目前为止我做了什么

我已经分析了问题,并在我的应用程序中创建了我需要的所有对象。 我实际上在stackoverflow.com上做了一些搜索,并认为Apache POI非常有用。

我需要帮助的地方

问题是我不知道应该从什么开始。 关于如何实现这一点,我应该使用什么工具,语言,API或设计模式的任何建议都非常受欢迎。

2 个答案:

答案 0 :(得分:2)

我不同意您选择的POI。我认为安迪汗的JExcel远远优越。

我想知道为什么是Excel电子表格而不是关系数据库。

这听起来像是标准的分层Web应用程序。最好的建议是将问题分解成碎片:

  1. 获取数据
  2. 执行计算
  3. 编写UI以显示它们。
  4. 让每件作品单独工作和测试,然后放在一边。逐个完成各个层次的工作。

答案 1 :(得分:0)

您可能已经拥有apache POI库,这可能会帮助您开始基于源代码

import java.io.*;
import java.util.Iterator;

import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.ss.usermodel.Row;
import org.apache.poi.xssf.usermodel.XSSFSheet;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;

public class ReadExcelFile {
    public static void main(String[] args) 
    {
        try {

            FileInputStream file = new FileInputStream(new File("C:/Users/hussain.a/Desktop/mar_25/Tradestation_Q4 Dashboard_Week 5_1029-1104.xlsx"));
            XSSFWorkbook workbook = new XSSFWorkbook(file);
            XSSFSheet sheet = workbook.getSheetAt(0);
            Iterator<Row> rowIterator = sheet.iterator();
            rowIterator.next();
            while(rowIterator.hasNext())
            {
                Row row = rowIterator.next();
                //For each row, iterate through each columns
                Iterator<Cell> cellIterator = row.cellIterator();
                while(cellIterator.hasNext())
                {
                    Cell cell = cellIterator.next();
                    switch(cell.getCellType()) 
                    {
                        case Cell.CELL_TYPE_BOOLEAN:
                            System.out.println("boolean===>>>"+cell.getBooleanCellValue() + "\t");
                            break;
                        case Cell.CELL_TYPE_NUMERIC:
                            System.out.println("numeric===>>>"+cell.getNumericCellValue() + "\t");
                            break;
                        case Cell.CELL_TYPE_STRING:
                            System.out.println("String===>>>"+cell.getStringCellValue() + "\t");
                            break;
                    }
                }
                System.out.println("");
            }
            file.close();
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

}