|
|
|
@ -48,7 +48,7 @@ public class DataInfoServiceImp implements DataInfoService {
|
|
|
|
|
//去掉版本字段
|
|
|
|
|
Pattern pattern = Pattern.compile("^版本\\d+$");
|
|
|
|
|
if (null != querystr && !"".equals(querystr)) {
|
|
|
|
|
querys = querystr.split(" ");
|
|
|
|
|
querys = querystr.trim().split(" ");
|
|
|
|
|
list = Arrays.asList(querys);
|
|
|
|
|
}
|
|
|
|
|
//遍历 list
|
|
|
|
@ -69,7 +69,7 @@ public class DataInfoServiceImp implements DataInfoService {
|
|
|
|
|
int length = strs.length;
|
|
|
|
|
List<String> arrays = new ArrayList<String>();
|
|
|
|
|
for (int i = 0; i < length; i++) {
|
|
|
|
|
arrays.add(strs[i].toString());
|
|
|
|
|
arrays.add(strs[i].toString().trim());
|
|
|
|
|
}
|
|
|
|
|
for (String version : removelist) {
|
|
|
|
|
pagerOptions.setDataVersion(Integer.valueOf(version.replace("版本", "")));
|
|
|
|
|