Java Articles

Convert List to Map using Streams - Java 8

Java 8 – How to convert List to Map?

In  this tutorial, we will see "How to convert List to Map using Java 8?"How to convert List to Map in java 8 /** * Using Java 8, Convert a List to Map * @author Deepak Verma * */ import...
Java 8 Streams Filter List Example

Java 8 Streams Filter a List Example

In this tutorial, we will see "How to use Streams to Filter a List in Java 8?". We are going to use how Java 8 Streams API can be used to filter an ArrayList. Java 8 streams filter example Check out: ArrayList ListIterator in Java with Examples [bctt tweet="Java 8...
Program to Multiply two matrices - Java 8

Java 8 – Program to Multiply Two Matrices? (Simplest Example)

In  this tutorial, we will see "Program to Multiply two matrices using Java 8 Streams?" program to multiply two matrices using Java 8 Stream import java.util.stream.IntStream; /** * Using...
Find Nth Fibonacci Number in Java 8 - Techndeck

Java – Multiple ways to find Nth Fibonacci Number

In  this tutorial, we will see "Two ways to find Nth Fibonacci Number using Java?"find nth Fibonacci number in java 8 Java 1st method (before JAVA 8): /** * Using Java, Find the Nth...