gpt4 book ai didi

java - 使用 Java/Apache POI 读取 Excel 并计算总计

转载 作者:行者123 更新时间:2023-12-01 22:17:33 24 4
gpt4 key购买 nike

场景:

我正在开发一个应用程序,它将打开一个 Excel 文件,迭代工作表的行并计算每行的数值总和。

问题:

考虑以下两种情况:

enter image description here

enter image description here

如果第一种情况的输出是:

A -> 15.0 pages.
B -> 15.0 pages.
T -> 15.0 pages.

为什么第二种情况的输出是:

Tanmay -> 15.0 pages.
Abhishek -> 15.0 pages.
Bijoy -> 15.0 pages.

不应该像下面这样吗?

Abhishek -> 15.0 pages.
Bijoy -> 15.0 pages.
Tanmay -> 15.0 pages.

代码:

package miscellaneous;

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 java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;


/**
* Created by Sandeep on 8/6/15.
*/
public class TestHarness {

@SuppressWarnings({ "unchecked" })
public static void main(String[] args) {
Map<String, Double> stringDoubleMap = new HashMap<String, Double>();
stringDoubleMap = readExcelFile();

for (Map.Entry<String, Double> entry : stringDoubleMap.entrySet()) {
System.out.println(entry.getKey() + " -> " + entry.getValue() + " pages.");
}
}

@SuppressWarnings("rawtypes")
private static Map readExcelFile() {

InputStream fileInputStream = null;
HSSFWorkbook hssfWorkbook = null;
HSSFSheet sheet;
HSSFRow row;
HSSFCell cell;
Iterator rowIterator, cellIterator;
String employeeName=null;
String sheetName=null;
double total=0;
Map<String, Double> empMonthlyProdStat = new HashMap<String, Double>();

try {
fileInputStream = new FileInputStream("D:\\Sandeep\\TestExcelWorkbook.xls");
hssfWorkbook = new HSSFWorkbook(fileInputStream);
sheet = hssfWorkbook.getSheetAt(0);
sheetName = sheet.getSheetName();
rowIterator = sheet.rowIterator();

while (rowIterator.hasNext()) {
row = (HSSFRow) rowIterator.next();
cellIterator = row.cellIterator();
while (cellIterator.hasNext()) {
cell = (HSSFCell) cellIterator.next();

if (cell.getCellType() == HSSFCell.CELL_TYPE_STRING) {
employeeName = cell.getStringCellValue();
} else if (cell.getCellType() == HSSFCell.CELL_TYPE_NUMERIC) {
total = total + cell.getNumericCellValue();
} else {// Handle Boolean, Formula, Errors
}
}
empMonthlyProdStat.put(employeeName, total);
total = 0;
}
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
hssfWorkbook.close();
fileInputStream.close();
} catch (IOException e) {
e.printStackTrace();
}
}
System.out.println(sheetName + "\n" + "------------");
return empMonthlyProdStat;
}

}

最佳答案

排序已关闭,因为 HashMap 不按插入顺序返回条目。试试LinkedHashMap相反。

来自文档:

Hash table and linked list implementation of the Map interface, with predictable iteration order. This implementation differs from HashMap in that it maintains a doubly-linked list running through all of its entries. This linked list defines the iteration ordering, which is normally the order in which keys were inserted into the map (insertion-order). Note that insertion order is not affected if a key is re-inserted into the map. (A key k is reinserted into a map m if m.put(k, v) is invoked when m.containsKey(k) would return true immediately prior to the invocation.)

关于java - 使用 Java/Apache POI 读取 Excel 并计算总计,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30705134/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com