2 回答
TA贡献1812条经验 获得超5个赞
您可以使用HashMap<String,TreeSet<String>> map = new HashMap<>();
那么你的代码将是:
ResultSet rs = stmt.executeQuery("SELECT PATH, WORD FROM TABLE_A");
while(rs.next()) {
if (map.containsKey(rs.getString("WORD"))) { // If the word is already in your hash map
TreeSet<String> path = map.get(rs.getString("WORD")); //get the set of files where this word exist
path.add(rs.getString("PATH")); // add the new path to the set
map.put(rs.getString("WORD"), path); // update the map
} else { // else if the word is new
TreeSet<String> path = new TreeSet<String>(); // create a new set
path.add(rs.getString("PATH")); // add the path to the set
map.put(rs.getString("WORD"), path); // add the new data to the map
}
}
TA贡献1789条经验 获得超10个赞
在这种情况下, TreeSet比HashMap更好,因为它不接受重复值,从而保证了更高的完整性。
无论如何,HashMap更适合您的需求,因为Path可以是 key,word是 value。
我准备了一个示例,说明如何检索路径和单词,然后将它们分别放入HashMap的键和值中:
Map<String, String> fileParameters = new HashMap<>();
ResultSet rs = stmt.executeQuery("SELECT path, word FROM files");
while(rs.next()) {
String path = rs.getString("path");
String name = rs.getString("word");
fileParameters.put(path, name);
添加回答
举报