摘要: public static void main(String[] args) { Map<String, String> map = new HashMap<String, String>(); map.put("key1", "value1"); map.put("key2", "value2") 阅读全文
posted @ 2023-01-19 15:06 锐洋智能 阅读(1269) 评论(0) 推荐(0) 编辑
摘要: /** * 将Map字符串转换为Map * * @param str Map字符串 * @return Map */ public static Map<String,String> mapStringToMap(String str){ str = str.substring(1, str.len 阅读全文
posted @ 2023-01-19 15:04 锐洋智能 阅读(1293) 评论(0) 推荐(0) 编辑
摘要: Map<String, String> map = new HashMap<String, String>(); map.put("key1", "value1"); map.put("key2", "value2"); map.put("key3", "value3"); System.out.p 阅读全文
posted @ 2023-01-19 15:03 锐洋智能 阅读(965) 评论(0) 推荐(0) 编辑