Java8Example
Pages
(Move to ...)
Home
Java.Util
OPtional API
Contact Us
About Us
▼
Sunday, November 14, 2021
JavaScript Character to ASCII Using String.charCodeAt() Function
›
1. Overview In this tutorial, we will learn how to use the String object charCodeAt() function in javascript . String.charCodeAt() function...
Sunday, August 16, 2020
Java 8 Stream Sorting Multiple Fields Examples
›
Example to sort the stream on multiple fields using Comparaor.comparing() and Comparator.thenComparing() methods in java 8. The below progra...
Saturday, August 15, 2020
Java 8 Convert All Map Keys and Values into List
›
Java 8 Example to Convert All Map Keys and Values into List Use keyset().stream() and call collect() method to convert into List. Use values...
Java 8 Stream.iterate() VS Stream.random() - Infinite Streams
›
import java.util.List; import java.util.Random; import java.util.function.Supplier; import java.util.stream.Collectors; import java.util.str...
Java 8 Stream.generate() - Generate Random UUID numbers from Infinite Series
›
package com.javaprogramto.java8.streams.infinite; import java.util.List; import java.util.UUID; import java.util.function.Supplier; impor...
Java 8 Stream.iterate() Infinite Streams Example
›
Java 8 Example program to generate the first 10 numbers from the infinite stream using Stream.iterate()Method package com.javaprogramto.java...
Tuesday, April 14, 2020
Java 8 flatMap Examples - Stream flatmap convert Stream<List<List<String>>> into Stream<String>
›
1. Introduction In this article, We'll learn about java 8 new Stream API flatMap() method. When to use it and how to use it. fla...
›
Home
View web version