Langsung ke konten utama

Group By Array Object dengan aggregation sum dan avg

Case

saya ingin menggroup id yang sama dari list ini dan ingin sum dari parameter ke-3 dan nge avg parameter ke-4.

new Foo(1, "P1", 300.0, 400.0), 
new Foo(2, "P2", 600.0, 400.0),
new Foo(3, "P3", 30.0, 20.0),
new Foo(3, "P3", 70.0, 20.0),
new Foo(1, "P1", 360.0, 40.0),
new Foo(4, "P4", 320.0, 200.0),
new Foo(4, "P4", 500.0, 900.0)

expectednya ketika di group akan seperti ini

new Foo(1, "P1", 660.0, 220.0), 
new Foo(2, "P2", 600.0, 400.0),
new Foo(3, "P3", 100.0, 20.0),
new Foo(4, "P4", 820.0, 550.0)

How To

buat class Foo

class Foo{
        private int id;
        private String name;
        private double a;
        private double b;

        public Foo(int id, String name, double a, double b) {
            this.id = id;
            this.name = name;
            this.a = a;
            this.b = b;
        }

        @Override
        public String toString() {
            return "Foo{" +
                    "id=" + id +
                    ", name='" + name + '\'' +
                    ", a=" + a +
                    ", b=" + b +
                    '}';
        }
    }

buat data listnya 

List<Foo> list = Arrays.asList(
                new Foo(1, "P1", 300, 400),
                new Foo(2, "P2", 600, 400),
                new Foo(3, "P3", 30, 20),
                new Foo(3, "P3", 70, 20),
                new Foo(1, "P1", 360, 40),
                new Foo(4, "P4", 320, 200),
                new Foo(4, "P4", 500, 900));


cara grouping perfield

list.stream().collect(Collectors.groupingBy(foo -> foo.id))
                .entrySet()
                .stream()
                .forEach(e -> System.out.println(e));

listnya akan digrouping per idnya, idnya akan jadi key lalu valuenya berisi list of Foo yang idnya sama. jika dirun hasilnya akan seperti ini. 

1=[Foo{id=1, name='P1', a=300, b=400.0}, Foo{id=1, name='P1', a=360, b=40.0}]
2=[Foo{id=2, name='P2', a=600, b=400.0}]
3=[Foo{id=3, name='P3', a=30, b=20.0}, Foo{id=3, name='P3', a=70, b=20.0}]
4=[Foo{id=4, name='P4', a=320, b=200.0}, Foo{id=4, name='P4', a=500, b=900.0}]

cara grouping per field dengan aggregation sum dan avg

list.stream().collect(Collectors.groupingBy(foo -> foo.id))
                .entrySet()
                .stream()
                .map(e -> {
                    double a = e.getValue().stream().mapToDouble(ax -> ax.a).sum();
                    double b = e.getValue().stream().mapToDouble(ax -> ax.b).average().getAsDouble();
                    return new Foo(e.getKey(), e.getValue().get(0).name, a, b);
                })
                .forEach(foo -> {
                    System.out.println(foo);
                });

kita sum field a dan avg field b lalu modife value dari Foo. jika dirun hasilnya akan seperti ini: 

Foo{id=1, name='P1', a=660, b=220.0}
Foo{id=2, name='P2', a=600, b=400.0}
Foo{id=3, name='P3', a=100, b=20.0}
Foo{id=4, name='P4', a=820, b=550.0}


berikut source lengkapnya: 

package com.example.percobaan;

import java.util.Arrays;
import java.util.List;
import java.util.stream.Collectors;

public class Main {
    public static void main(String[] args) {
        List<Foo> list = Arrays.asList(
                new Foo(1, "P1", 300, 400),
                new Foo(2, "P2", 600, 400),
                new Foo(3, "P3", 30, 20),
                new Foo(3, "P3", 70, 20),
                new Foo(1, "P1", 360, 40),
                new Foo(4, "P4", 320, 200),
                new Foo(4, "P4", 500, 900));

        list.stream().collect(Collectors.groupingBy(foo -> foo.id))
                .entrySet()
                .stream()
                .forEach(e -> System.out.println(e));

        System.out.println("\n==============\n");

        list.stream().collect(Collectors.groupingBy(foo -> foo.id))
                .entrySet()
                .stream()
                .map(e -> {
                    double a = e.getValue().stream().mapToDouble(ax -> ax.a).sum();
                    double b = e.getValue().stream().mapToDouble(ax -> ax.b).average().getAsDouble();
                    return new Foo(e.getKey(), e.getValue().get(0).name, a, b);
                })
                .forEach(foo -> {
                    System.out.println(foo);
                });
    }
    static class Foo{
        private int id;
        private String name;
        private double a;
        private double b;

        public Foo(int id, String name, double a, double b) {
            this.id = id;
            this.name = name;
            this.a = a;
            this.b = b;
        }

        @Override
        public String toString() {
            return "Foo{" +
                    "id=" + id +
                    ", name='" + name + '\'' +
                    ", a=" + a +
                    ", b=" + b +
                    '}';
        }
    }
}


Sourcehttps://stackoverflow.com/questions/26340688/group-by-and-sum-objects-like-in-sql-with-java-lambdas

Komentar

Postingan populer dari blog ini

whois

  Pengertian:  whois adalah tools yang digunakan untuk melihat informasi mengenai kepemilikan domain dan website. ICANN meregulasikan domain name dan kepemelikian, tapi record listnya di adakan di semua company dikenal sebagai registrasi.  jadi orang bisa query list of records, dan register akan menghandle request anda dan mengirim detail dari whois record yang sesuai. How to Install whois :  sudo apt-get install whois How to use:  whois cnn.com dan hasilnya akan seperti ini. Domain Name: CNN.COM Registry Domain ID: 3269879_DOMAIN_COM-VRSN Registrar WHOIS Server: whois.corporatedomains.com Registrar URL: http://www.cscglobal.com/global/web/csc/digital-brand-services.html Updated Date: 2018-04-10T16:43:38Z Creation Date: 1993-09-22T04:00:00Z Registry Expiry Date: 2026-09-21T04:00:00Z Registrar: CSC Corporate Domains, Inc. Registrar IANA ID: 299 Registrar Abuse Contact Email: domainabuse@cscglobal.com Registrar Abuse Contact Phone: 8887802723 Domain Status: clien...

Membuat export dan import Excel di spring boot

Membuat export dan import Excel  di spring boot           Adakalanya seorang developer diminta untuk membuat fitur export dan import berbentuk excel dan sebenarnya java sudah menyediakan suatu liblary yang memudahkan kita untuk bekerja dengan MS-Office yaitu Apache POI. Disini saya akan menggunakan Apache POI untuk membaca dan menulis Excel. Catatan : Disini saya sarankan untuk belajar Apache POI Excel terlebih dahulu agar anda mengerti kode yang saya buat di bawah ini. Bahan : -  IntelliJ IDEA -  PostgreSQL -  Maven -  Java 8 Jika sudah tersedia bahan - bahan di atas langsung saja kunjungi situs ini Tambahkan dependency Apache POI di pom.xml seperti di bawah ini. <?xml version="1.0" encoding="UTF-8"?> <project xmlns= "http://maven.apache.org/POM/4.0.0" xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation= "http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0...

Spring Boot CRUD Thymeleaf-Pagination + Bootstrap Dynamic Modals

Spring Boot CRUD Thymeeaf-Pagination + Bootstrap Dynamic Modals                Sebelumnya saya sudah sharing bagaimana cara membuat Spring Boot CRUD sederhana di artikel sebelumnya yang blum lihat silahkan lihat disini . Sekarang saya akan membuat Spring Boot CRUD lagi ala pagination dan Dynamic Modals dengan bootstrap. Bahan : - IntelliJ IDEA - PostgreSQL - Maven - JDK1.8 Jika bahan nya sudah tersedia agan bisa kunjungi situs resmi spring nya https://start.spring.io/  buat seperti ini lalu download dan exract. Buat database yang bernama "springbootcrud2" disini saya menggunakan pgadmin4. Buka intelliJ atau IDE kesayangan kalian buka file application.properties di dalam resources dan isikan ini untuk configurasi databasenya sesuai kan dengan database kalian lalu save. ## Spring DATASOURCE (DataSourceAutoConfiguration & DataSourceProperties) spring.datasource.url = jdbc:postgresql://loc...