gpt4 book ai didi

java - 如何使用具有多种数据类型的 hashmap 作为请求参数?

转载 作者:行者123 更新时间:2023-12-01 06:34:31 25 4
gpt4 key购买 nike

是否可以将 putBooleanput 一起使用?我不知道如何拥有一个可以同时处理字符串和 boolean 请求参数的 HashMap 。

Map<String,String> params = new HashMap<String, String>();

params.put("name", "Name here");
params.put("gender", "Female");
params.putBoolean("isStudent", true); //this is not working...

感谢您的帮助。

最佳答案

您可以存储这样的对象格式

Map<String,Object> params = new HashMap<String, Object>();

params.put("name", "Name here");
params.put("gender", "Female");
params.put("isStudent", true);

在获取数据时,您可以将对象类型转换为文字。喜欢

// In case of String 
String name=(String)param.get("name");
// In case of Boolean
Boolean isStudent=(Boolean)param.get("isStudent");

关于java - 如何使用具有多种数据类型的 hashmap 作为请求参数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41256813/

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