有什么方法可以基于Java中的键/值来过滤HashTable
?我可以使用HashMap
来做到这一点,
Map<Integer, String> result = hashmap.entrySet()
.stream()
.filter(map -> map.getValue().startsWith("A"))
.collect(Collectors.toMap(map -> map.getKey(), map ->
map.getValue()));
但是,我似乎找不到关于使用HashTable
进行操作的任何信息。有想法吗?