gpt4 book ai didi

java - 在java中的链接 HashMap 中查找特定键的值

转载 作者:行者123 更新时间:2023-12-01 16:42:59 26 4
gpt4 key购买 nike

是否有更简单的方法来查找 Java 中链接 HashMap 中特定键的值?

HashMap<String, Object> newmap = (HashMap<String, Object>) entry.getValue();
String newType = "";
//finds out the primaryType for the new node
for (Entry<String, Object> mapentry : newmap.entrySet()) {
if (mapentry.getKey() == "jcr:primaryType") {
newType = (String) newmap.get("jcr:primaryType");
}
}

最佳答案

由于您的默认结果是 "",因此您可以这样做

String newType = newmap.getOrDefault("jcr:primaryType", "");

关于java - 在java中的链接 HashMap 中查找特定键的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59733758/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com