程序员の奇妙冒险

返回
Java Java
2018-07-24 14:30 阅读:72 评论:0

java jdk1.8 使用stream流进行list 分组归类

代码 import com.alibaba.fastjson.JSON; import java.util.ArrayList; import java.util.List; import java.util.stream.Collectors; /** * @author czw */ publi...

                    <link rel="stylesheet" href="https://csdnimg.cn/release/blogv2/dist/mdeditor/css/editerView/markdown_views-a5d25dd831.css">
                    <link rel="stylesheet" href="https://csdnimg.cn/release/blogv2/dist/mobile/css/edit_views_md-250d69367f.min.css">
                    <link rel="stylesheet" href="https://csdnimg.cn/release/blogv2/dist/mdeditor/css/style-e504d6a974.css">
                    <h4 id="代码">代码</h4> 
import com.alibaba.fastjson.JSON;
import java.util.ArrayList;
import java.util.List;
import java.util.stream.Collectors;

/**
 * @author czw
 */
public class Foo{
    private String name;
    private String type;
    private Double typeValue;
    private Integer count;

    public Foo(String name, String type, Double typeValue, Integer count) {
        this.name = name;
        this.type = type;
        this.typeValue = typeValue;
        this.count = count;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getType() {
        return type;
    }

    public void setType(String type) {
        this.type = type;
    }

    public Double getTypeValue() {
        return typeValue;
    }

    public void setTypeValue(Double typeValue) {
        this.typeValue = typeValue;
    }

    public Integer getCount() {
        return count;
    }

    public void setCount(Integer count) {
        this.count = count;
    }

    @Override
    public String toString() {
        return "Foo{" +
                "name='" + name + '\'' +
                ", type='" + type + '\'' +
                ", typeValue=" + typeValue +
                ", count=" + count +
                '}';
    }

    public static void main(String[] args) {
        List<Foo> fooList = new ArrayList<Foo>();
        fooList.add(new Foo("A","san",1.0,2))  ;
        fooList.add( new Foo("A","nas",13.0,1))  ;
        fooList.add(new Foo("B","san",112.0,3))  ;
        fooList.add(new Foo("C","san",43.0,5))  ;
        fooList.add(new Foo("B","nas",77.0,7))  ;
        List<List<Foo>> groupList = new ArrayList<>();
        fooList.stream()
                .collect(Collectors.groupingBy(Foo::getName,Collectors.toList()))
                .forEach((name,fooListByName)->{
                    groupList.add(fooListByName);
                });

        System.out.println(JSON.toJSONString(groupList));
    }
}

输出结果

[
    [{
        "count": 2,
        "name": "A",
        "type": "san",
        "typeValue": 1
    }, {
        "count": 1,
        "name": "A",
        "type": "nas",
        "typeValue": 13
    }],
    [{
        "count": 3,
        "name": "B",
        "type": "san",
        "typeValue": 112
    }, {
        "count": 7,
        "name": "B",
        "type": "nas",
        "typeValue": 77
    }],
    [{
        "count": 5,
        "name": "C",
        "type": "san",
        "typeValue": 43
    }]
]

个人博客:http://www.itczw.top

评论 (0)
暂无评论 来抢沙发吧~