我在java中有一本字典:
protected Dictionary<String, Object> objects;
现在我想获取字典的键,以便我可以在for循环中使用get()获取键的值:
for (final String key : this.objects) {
final Object value = this.objects.get(key);
但这不起作用。 :( 有什么想法吗?
THX 托马斯
PS:我需要钥匙和钥匙变量中的值。答案 0 :(得分:20)
首先要做的事情。 Dictionary
类是过时的方式。您应该使用Map
代替:
protected Map<String, Object> objects = new HashMap<String, Object>();
一旦修复,我认为这就是你的意思:
for (String key : objects.keySet()) {
// use the key here
}
如果您打算迭代键和值,则执行此操作better:
for (Map.Entry<String, Object> entry : objects.entrySet()) {
String key = entry.getKey();
Object val = entry.getValue();
}
答案 1 :(得分:7)
如果你必须使用字典(例如osgi felix框架ManagedService),那么以下工作..
public void updated(Dictionary<String, ?> dictionary)
throws ConfigurationException {
if(dictionary == null) {
System.out.println("dict is null");
} else {
Enumeration<String> e = dictionary.keys();
while(e.hasMoreElements()) {
String k = e.nextElement();
System.out.println(k + ": " + dictionary.get(k));
}
}
}
答案 2 :(得分:2)
java.util.Map
是字典等价的,以下是关于如何遍历每个条目的示例
Map<String, Object> map = new HashMap<String, Object>();
//...
for ( String key : map.keySet() ) {
}
for ( Object value : map.values() ) {
}
for ( Map.Entry<String, Object> entry : map.entrySet() ) {
String key = entry.getKey();
Object value = entry.getValue();
}
答案 3 :(得分:1)
您可以将值设为
for(final String key : this.objects.keys()){
final Object value = this.objects.get(key);
}