我有两个对象列表。需要遍历它们,按id进行匹配,如果id匹配,则从列表2更新该对象的list1值。
我知道如何使用旧的Java,但是想知道它是否可以在JAVA8(流)中完成
class Person {
String id ;
String name;
String age;
}
p1:{1,test1,3}
p2:{2,test2,6}
p3:{3,test3,8}
p4:{1,test1,33}
p5:{2,test22,16}
p6:{3,test3,18}
p10:{10,test10,8}
List<Person> list1 = {p1,p2, p3, p10};
List<Person> list2 = {p4,p5, p6};
想要这样的最终结果
list1 = {p1,p2, p3, p10}
p1:{1,test1,33}
p2:{2,test22,16}
p3:{3,test3,18}
p10:{10,test10,8}
基本上,我要 如果id匹配,我希望将值从list2覆盖到list 1(不希望list 3)
到目前为止,我能够按ID匹配它们,但是后来我迷失了如何更新字段...
List<CartItemAttribute> test = existingCartItem.get().getAttributes().stream()
.filter(x -> (cartItem.getAttributes().stream()
.filter(y->y.getCartItemAttributeId()== x.getCartItemAttributeId())
.count()<1
)).collect(Collectors.toList());
这是我预期的工作
private void upsertAttributes(CartItem cartItem, Optional<CartItem> existingCartItem) {
boolean addAtribute = true;
List<CartItemAttribute> existingAttribute = existingCartItem.get().getAttributes();
for (CartItemAttribute requestingList: cartItem.getAttributes()) {
addAtribute = true;
for (CartItemAttribute existingList: existingAttribute) {
if(StringUtils.isNotBlank(requestingList.getCartItemAttributeId())
&& requestingList.getCartItemAttributeId()
.equals(existingList.getCartItemAttributeId())) {
existingList.setKey(requestingList.getKey());
existingList.setValue(requestingList.getValue());
addAtribute = false;
}
}
if(addAtribute) {
existingAttribute.add(requestingList);
}
}
}
答案 0 :(得分:2)
尝试一下
List<Person> list1 = getPersonList1();
List<Person> list2 = getPersonList2();
list1.replaceAll(l1 -> list2.stream()
.filter(l2 -> l2.getId().equals(l1.getId()))
.findAny()
.orElse(l1));
list1.addAll(list2.stream()
.filter(l2 -> !list1.contains(l2))
.collect(toList()));
getPersonList1
private static List<Person> getPersonList1() {
return Lists.newArrayList(
new Person("1", "test1", "3"),
new Person("2", "test2", "6"),
new Person("3", "test3", "8"),
new Person("10", "test10", "8")
);
}
getPersonList2
private static List<Person> getPersonList2() {
return Lists.newArrayList(
new Person("1", "test1", "33"),
new Person("2", "test22", "16"),
new Person("3", "test3", "18"),
new Person("4", "test4", "15")
);
}
列表1
[
Person(id=1, name=test1, age=3),
Person(id=2, name=test2, age=6),
Person(id=3, name=test3, age=8),
Person(id=10, name=test10, age=8)
]
列表2
[
Person(id=1, name=test1, age=33),
Person(id=2, name=test22, age=16),
Person(id=3, name=test3, age=18),
Person(id=4, name=test4, age=15)
]
最终名单1
[
Person(id=1, name=test1, age=33),
Person(id=2, name=test22, age=16),
Person(id=3, name=test3, age=18),
Person(id=10, name=test10, age=8),
Person(id=4, name=test4, age=15)
]
答案 1 :(得分:0)
您可以执行以下操作重新分配列表:
list1 = existingCartItem.get().getAttributes().stream()
.filter(x -> (cartItem.getAttributes().stream()
.filter(y->y.getCartItemAttributeId()== x.getCartItemAttributeId())
.count()<1
)).collect(Collectors.toList());
答案 2 :(得分:0)
您可以使用input$slider
通过以下方式实现第一个列表的就地更新:
ui <- fluidPage(
sliderInput("slider", "Slider", 1, 10, 10),
verbatimTextOutput("test")
)
server <- function(input, output, session) {
graph <- reactiveValues(g = 5)# initial value
observeEvent(input$slider, {
graph$g <- input$slider # new value
}, ignoreInit = TRUE)
output$test <- renderPrint({graph$g})
}
shinyApp(ui, server)
答案 3 :(得分:0)
existingCartAttributes.replaceAll(l1 -> requestingCartAttributes.stream()
.filter(l2 -> l2.getCartItemAttributeId().equals(l1.getCartItemAttributeId()))
.findAny()
.orElse(l1));
System.out.println("*********************************");
for (CartItemAttribute var: existingCartAttributes) {
System.out.println("[" +var.getCartItemAttributeId() + "] [" + var.getKey() + "] [" +var.getValue()+"]");
}
System.out.println("*********************************");
existingCartAttributes.addAll(requestingCartAttributes.stream()
.filter(l2 -> StringUtils.isBlank(l2.getCartItemAttributeId()))
.collect(Collectors.toList()));
for (CartItemAttribute var: existingCartAttributes) {
System.out.println("[" +var.getCartItemAttributeId() + "] [" + var.getKey() + "] [" +var.getValue()+"]");
}