发布网友 发布时间:2023-07-10 10:24
共1个回答
热心网友 时间:2024-12-04 14:02
信手拈来:MapcurrMap=newHashMap();/////////////////////////////////////////////////////////////for(Stringstring:currMap.keySet()){if(string.equals("title")){System.out.println(currMap.get(string));}}/////////////////////////////////////////////////////////////for(Entryentry:currMap.entrySet()){if(entry.getKey().equals("title")){System.out.println(entry.getValue());}}////////////////////////////////////////////////////////////Iteratoriterator=currMap.keySet().iterator();while(iterator.hasNext()){Stringstring=iterator.next();if(string.equals("title")){System.out.println(currMap.get(string));}}算了不想写了,其他的方式还有一些,自己把握