作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
是否可以将 putBoolean
与 put
一起使用?我不知道如何拥有一个可以同时处理字符串和 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/
我是一名优秀的程序员,十分优秀!