如何将列表<字符串>转换为基于定界符的Map<字符串,列表<字符串>>
2022-09-02 09:25:39
我有一个字符串列表,如:
List<String> locations = Arrays.asList("US:5423","US:6321","CA:1326","AU:5631");
我想像这样转换:Map<String, List<String>>
AU = [5631]
CA = [1326]
US = [5423, 6321]
我已经尝试了此代码并且它有效,但是在这种情况下,我必须创建一个新类 。GeoLocation.java
List<String> locations=Arrays.asList("US:5423", "US:6321", "CA:1326", "AU:5631");
Map<String, List<String>> locationMap = locations
.stream()
.map(s -> new GeoLocation(s.split(":")[0], s.split(":")[1]))
.collect(
Collectors.groupingBy(GeoLocation::getCountry,
Collectors.mapping(GeoLocation::getLocation, Collectors.toList()))
);
locationMap.forEach((key, value) -> System.out.println(key + " = " + value));
地理位置.java
private class GeoLocation {
private String country;
private String location;
public GeoLocation(String country, String location) {
this.country = country;
this.location = location;
}
public String getCountry() {
return country;
}
public void setCountry(String country) {
this.country = country;
}
public String getLocation() {
return location;
}
public void setLocation(String location) {
this.location = location;
}
}
但是我想知道,有没有办法在不引入新课程的情况下转换为。List<String>
Map<String, List<String>>