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 [crayon-6605c18148b6e224888522/]   Output: [crayon-6605c18148b77315889285/] How to...
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 [crayon-6605c1814923d131334710/]   Output:...
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): [crayon-6605c18149384402721499/]  ...