问题描述
- java中举几个参数是(key,value)形式的方法看看
-
java中举几个参数是(key,value)形式的方法看看,并实例化参数,谢谢
解决方案
1、hashmap.put("id" , "1"); (还有其它Map)
2、json.put("type", 3);
3、response.setAttribute("code", "200")
4、urlConnection.setRequestProperty("User-Agent", "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT; DigExt)");
5、、、、、、
平常开发中 key value 形式的方法还是能见到很多的
解决方案二:
map和dictionary不都可以么
解决方案三:
HashMap hashmap = new HashMap();
hashmap.put("语文" , 80.0);
解决方案四:
map的key和value是比较常用的
解决方案五:
json和HashMap都是
解决方案六:
map是key,value形式的
解决方案七:
hashmap 和hashtable 里面存的都是以键值对格式的,不过hashmap更常用,还有一些jsp中的比如session、request、response、等等都是以键值对格式存储的
解决方案八:
还有JSP中的application对象
解决方案九:
你去看一下Map把!(key,value)是map的存储方式。
时间: 2024-10-26 08:19:48