我開發了一個代碼,它打開一個CSV文件並使用for循環計算行數,但我覺得這種方法效率不高,並導致多次延遲。如何在Java中高效地計算CSV文件的行
TargetFile.mdb
有120行report.csv
有11000行
如果我用這個方法的代碼需要運行120*11000=1320000 times
計算每個資源計數。這裏是我的代碼:
這裏是新的,工作代碼,由Xavier Delamotte有效地計算行:
import java.io.File;
import java.io.FileReader;
import java.io.IOException;
import java.sql.SQLException;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import au.com.bytecode.opencsv.CSVReader;
import com.healthmarketscience.jackcess.Database;
import com.healthmarketscience.jackcess.Table;
public class newcount {
public static class ValueKey{
String mdmId;
String pgName;
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((mdmId == null) ? 0 : mdmId.hashCode());
result = prime * result
+ ((pgName == null) ? 0 : pgName.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
ValueKey other = (ValueKey) obj;
if (mdmId == null) {
if (other.mdmId != null)
return false;
} else if (!mdmId.equals(other.mdmId))
return false;
if (pgName == null) {
if (other.pgName != null)
return false;
} else if (!pgName.equals(other.pgName))
return false;
return true;
}
public ValueKey(String mdmId, String pgName) {
super();
this.mdmId = mdmId;
this.pgName = pgName;
}
}
public static void main(String[] args) throws IOException, SQLException,Throwable{
Integer count;
String MDMID,NAME,PGNAME,PGTARGET,TEAM;
Table RESOURCES = Database.open(new File("C:/STATS/TargetFile.mdb")).getTable("RESOURCES");
int pcount = RESOURCES.getRowCount();
String csvFilename = "C:\\MDMSTATS\\APEX\\report.csv";
CSVReader csvReader = new CSVReader(new FileReader(csvFilename));
List<String[]> content = csvReader.readAll();
Map<ValueKey, Integer> csvValuesCount = new HashMap<ValueKey, Integer>();
for (String[] rowcsv : content) {
ValueKey key = new ValueKey(rowcsv[6], rowcsv[1]);
count = csvValuesCount.get(key);
csvValuesCount.put(key,count == null ? 1: count + 1);
}
//int count = 0;
// Taking 1st resource data
for (int i = 0; i < pcount-25; i++) {
Map<String, Object> row = RESOURCES.getNextRow();
TEAM = row.get("TEAM").toString();
MDMID = row.get("MDM ID").toString();
NAME = row.get("RESOURCE NAME").toString();
PGNAME = row.get("PG NAME").toString();
PGTARGET = row.get("PG TARGET").toString();
int PGTARGETI = Integer.parseInt(PGTARGET);
Integer countInteger = csvValuesCount.get(new ValueKey(MDMID, PGNAME));
count = countInteger == null ? 0: countInteger;
System.out.println(NAME+"\t"+PGNAME+"\t"+count);
}
}
}
所有我想要做的是通過使用CSV文件,SQL查詢來計算資源計數 – H4SN 2013-04-06 11:38:50