首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >如何从以下返回中取值: mapDATA=={title=I Talk,id=5df,order_no=null,type=i_talk,is_speaker=0}?

如何从以下返回中取值: mapDATA=={title=I Talk,id=5df,order_no=null,type=i_talk,is_speaker=0}?
EN

Stack Overflow用户
提问于 2019-12-20 20:24:05
回答 1查看 28关注 0票数 0
代码语言:javascript
复制
Map<String, Object> mapData = new HashMap<>();

返回值:{title=I Talk, id=5df55, order_no=null, type=i_talk, is_speaker=0}mapData

如何获取titleid或类型或is_speaker的值

EN

回答 1

Stack Overflow用户

发布于 2019-12-20 21:53:05

使用Map.class的get方法

代码语言:javascript
复制
 /**
 * Returns the value to which the specified key is mapped,
 * or {@code null} if this map contains no mapping for the key.
 *
 * <p>More formally, if this map contains a mapping from a key
 * {@code k} to a value {@code v} such that {@code (key==null ? k==null :
 * key.equals(k))}, then this method returns {@code v}; otherwise
 * it returns {@code null}.  (There can be at most one such mapping.)
 *
 * <p>If this map permits null values, then a return value of
 * {@code null} does not <i>necessarily</i> indicate that the map
 * contains no mapping for the key; it's also possible that the map
 * explicitly maps the key to {@code null}.  The {@link #containsKey
 * containsKey} operation may be used to distinguish these two cases.
 *
 * @param key the key whose associated value is to be returned
 * @return the value to which the specified key is mapped, or
 *         {@code null} if this map contains no mapping for the key
 * @throws ClassCastException if the key is of an inappropriate type for
 *         this map
 * (<a href="Collection.html#optional-restrictions">optional</a>)
 * @throws NullPointerException if the specified key is null and this map
 *         does not permit null keys
 * (<a href="Collection.html#optional-restrictions">optional</a>)
 */
 V get(Object key);

结果将如下所示

代码语言:javascript
复制
import java.util.HashMap;
import java.util.Map;

public class Test {
        public static void main(String args[]){
        Map<String, Object> mapData = new HashMap<>();
        mapData.put("title", "I Talk");
        mapData.put("id", "5df55");
        mapData.put("order_no", null);
        mapData.put("type", "i_talk");
        mapData.put("is_speaker", 0);


        System.out.println(mapData.get("title"));
        System.out.println(mapData.get("is_speaker"));  
    }
}
票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/59425215

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档