Commit 25ba8786 by s_guodong

update

parent 5fd93a8b
......@@ -1112,6 +1112,10 @@ public class MdaUtils {
if (line.indexOf("=") == -1) {
break;
}
// 没有值的跳过
if (line.split("=").length == 1) {
continue;
}
//获取模型数据
String val = line.split("=")[1].trim();
String key = line.split("=")[0].trim();
......
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