Commit b3faee09 by 焦荣

修改参数格式

parent e77a856e
......@@ -285,8 +285,7 @@ public class RyfkController {
for(String s:strs){
String[] ms = s.split("=");
if(ms.length==2){
ms[0].replace(" ","");
ms[0].replace(" ","");
ms[0] = ms[0].replaceAll(" ","");
m.put(ms[0], ms[1]);
System.out.println("ms[0]====" + ms[0] + "==ms[1]===" + ms[1]);
}else{
......@@ -322,7 +321,7 @@ public class RyfkController {
System.out.println("D===" + m.get("D"));*/
RyfkController rk = new RyfkController();
Map m = rk.strtomap(data);
System.out.println(m.get(" B"));
System.out.println(m.get("B"));
String F = m.get("F")==null?"":m.get("F").toString();
System.out.println("===" + F);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment