|
Convert List to Map
Author: Venkata Sudhakar
The below example shows how to convert Object list into a Map
01 | package com.bethecoder.java8.streams; |
03 | import java.util.Arrays; |
06 | import java.util.stream.Collectors; |
08 | public class StreamToMapExample { |
10 | public static void main(String[] args) { |
11 | List<Student> sudents = Arrays.asList( |
12 | new Student( 1 , "Sriram" , 10 ), |
13 | new Student( 2 , "Tanvie" , 6 ), |
14 | new Student( 3 , "Charan" , 10 ) |
17 | Map<Integer, String> studentMap = sudents.stream() |
18 | .collect(Collectors.toMap(Student::getId, Student::getName)); |
20 | System.out.println(studentMap); |
23 | private static class Student { |
28 | public Student( int id, String name, int age) { |
38 | public void setId( int id) { |
42 | public String getName() { |
46 | public void setName(String name) { |
54 | public void setAge( int age) { |
It gives the following output,
{1=Sriram, 2=Tanvie, 3=Charan}
|
|