例如,如果我有
ArrayList<Product> productlist = new ArrayList<Product> ();
你如何得到所有的产品product.code
等于 1 和 2 的所有产品?
有我可以使用的图书馆吗?
在 c# 中我可以使用
productlist.where(product=> product.code.contains(arraywithproductcode)).ToList();
或其他方式正在使用
var newlist=(from p in productlist join a in arraywithproduct on a.product equals a select p);
我怎样才能在java for android中得到它?