The Artima Developer Community
Sponsored Link

Java Buzz Forum
How to use toList and joining methods of Collectors | Java 8 streams | Streams in Java 8

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
Ram N

Posts: 2777
Nickname: ramram
Registered: Jul, 2014

Ram N is Java Programmer
How to use toList and joining methods of Collectors | Java 8 streams | Streams in Java 8 Posted: Sep 19, 2017 11:05 AM
Reply to this message Reply

This post originated from an RSS feed registered with Java Buzz by Ram N.
Original Post: How to use toList and joining methods of Collectors | Java 8 streams | Streams in Java 8
Feed Title: JAVA EE
Feed URL: http://ramj2ee.blogspot.com/feeds/posts/default?alt=rss
Feed Description: This blog has viedo tutorials and Sample codes related to below Technologies. 1.J2EE 2.Java 3.Spring 4.Hibernate 5.Database 6.Oracle 7.Mysql 8.Design Patterns
Latest Java Buzz Posts
Latest Java Buzz Posts by Ram N
Latest Posts From JAVA EE

Advertisement

Click here to watch in Youtube :
https://www.youtube.com/watch?v=XBtsIW7_H_k&list=UUhwKlOVR041tngjerWxVccw

Product.java
public class Product
{
private String name;
private int price;

public Product(String name, int price)
{
super();
this.name = name;
this.price = price;
}

public String getName()
{
return name;
}

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

public int getPrice()
{
return price;
}

public void setPrice(int price)
{
this.price = price;
}

@Override
public String toString()
{
return "Product [name=" + name + ", price=" + price + "]";
}

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

public class StreamDemo
{
public static void main(String[] args)
{
List<Product> productList = Arrays.asList(
new Product("potatoes", 15),
new Product("orange", 15), new Product("lemon", 20),
new Product("bread", 20), new Product("sugar", 30));

/*
* Converting a stream to the Collection (Collection, List or
* Set):
*/

List<String> productNameList = productList.stream()
.map(Product::getName).collect(Collectors.toList());

System.out.println("productNameList = " + productNameList);

/*
* Reducing to String:
*
* The joiner() method can have from one to three parameters
* (delimiter, prefix, suffix). The handiest thing about using
* joiner() – developer doesn’t need to check if the stream
* reaches its end to apply the suffix and not to apply a
* delimiter. Collector will take care of that.
*/


String listToString = productList.stream()
.map(Product::getName)
.collect(Collectors.joining(", ", "[", "]"));

System.out.println("listToString = " + listToString);

}

}
Output
productNameList = [potatoes, orange, lemon, bread, sugar]
listToString = [potatoes, orange, lemon, bread, sugar]

Click the below link to download the code:
https://sites.google.com/site/ramj2eev1/home/javabasics/StreamDemo_Collectors_toList_joining.zip?attredirects=0&d=1

Github Link:
https://github.com/ramram43210/Java/tree/master/BasicJava/StreamDemo_Collectors_toList_joining

Bitbucket Link:
https://bitbucket.org/ramram43210/java/src/adf72ea7a150b1a34af5820c19f2232b522614b9/BasicJava/StreamDemo_Collectors_toList_joining/?at=master

See also:
  • All JavaEE Viedos Playlist
  • All JavaEE Viedos
  • All JAVA EE Links
  • Servlets Tutorial
  • All Design Patterns Links
  • JDBC Tutorial
  • Java Collection Framework Tutorial
  • JAVA Tutorial
  • Kids Tutorial
  • Read: How to use toList and joining methods of Collectors | Java 8 streams | Streams in Java 8

    Topic: How to use toList and joining methods of Collectors | Java 8 streams | Streams in Java 8 Previous Topic   Next Topic Topic: How to use range and reduce method of IntStream | Java 8 streams | Streams in Java 8

    Sponsored Links



    Google
      Web Artima.com   

    Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use