Java is officially announced the release date of version 14 on March 17, 2020. We’re gonna look at Java 14 major features with examples.
Tag: java
Java – Sort ArrayList of Objects
In this tutorial, we’re gonna look at some useful ways to sort Java ArrayList of Objects for Ascending and Descending order. You will know how to:
- sort ArrayList of Objects by one field or multiple fields
- use custom
Comparator
to sort ArrayList of Objects - implement
Comparable
interface to sort ArrayList of Objects conveniently
Convert Flux into List, Map – Reactor
In this tutorial, I will show you ways to convert Flux to List, and FLux to Map example that uses collectList()
, collectSortedList()
, collectMap()
, collectMultimap()
function..
More Practice: Spring Boot WebFlux example: Building Rest API
Java Android – Read JSON file from assets using Gson
In this Java-Android tutorial, I will show you how to read and parse JSON file from assets using Gson.