public class Test {
public static void main(String[] args) {
//定位次数统计,字符串处理以及储存
String flagTpye = "GPS";
String locationType = "GNSS:10,LBS:10,mobile:20,GPS:199";
System.out.println(change(flagTpye,locationType));
}
public static String change(String flagTpye,String locationType){
List<Map<String,String>> list = new ArrayList<>();
String[] locationTypeArr = locationType.split(",");
for (String s : locationTypeArr) {
HashMap<String,String> map = new HashMap<>();
String[] split = s.split(":");
map.put(split[0],split[1]);
list.add(map);
}
StringBuilder newStr = new StringBuilder();
for (Map<String, String> map : list) {
for (Map.Entry<String, String> entry : map.entrySet()) {
String key = entry.getKey();
String value = entry.getValue();
if (flagTpye.equals(key)){
BigDecimal bignum1 = new BigDecimal(value);
BigDecimal one = new BigDecimal(1);
BigDecimal newValue = null;
newValue = bignum1.add(one);
newStr.append(key+":"+newValue+",");
}else {
newStr.append(key+":"+value+",");
}
}
}
newStr.delete(newStr.length() -1, newStr.length());
return newStr.toString();
}
}
定位次数统计,字符串处理以及储存
最新推荐文章于 2024-01-15 08:00:00 发布
本文介绍了一种使用Java实现的统计定位类型次数的方法。通过解析包含多种定位方式及其出现次数的字符串,对特定类型的定位次数进行加一操作,并返回更新后的字符串。涉及到的技术包括字符串处理、正则表达式、HashMap数据结构和BigDecimal进行精确计算。
摘要由CSDN通过智能技术生成