首页 > 学院 > 开发设计 > 正文

将逗号连接的字符串转换为Map

2019-11-11 06:50:54
字体:
来源:转载
供稿:网友
String strWithComma = "zhou,zi,fei";String[] strWC = strWithComma.split("[//,//,]");Map<String, String> strMap = new HashMap<String, String>();for(String str : strWC){     strMap.put(str, str);}
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表