晚上好,我尝试使用 HashTable() 临时存储数据库表记录。问题是我不知道为什么放在 HashTable() 中的记录总是第一条记录。我认为问题的出现是因为错误的循环概念,相关代码:
宣布
Hashtable hashsample = new Hashtable();
for 循环
for (i = 0; i< db.getNumberOfRows(); i++) {
hashsample.put(i, db.getData());
System.out.println(hashsample);
}
p / s:我是HashTable的新手,db(数据库语句)运行良好......
需要一些提示和建议,谢谢先进^^