
Java 8 – How to find an entry with Largest Value in a Map or HashMap ?
In this article, we will discuss how to find an entry with Largest Value in a HashMap using Java 8 Stream Find an entry with Read More
In this article, we will discuss how to find an entry with Largest Value in a HashMap using Java 8 Stream Find an entry with Read More
In this article, we will discuss how to remove an entry with Largest Key in a HashMap using Java 8 Stream Remove an entry with Read More
In this article, we will discuss how to find an entry with Largest Key in a HashMap using Java 8 Stream Find an entry with Read More
In this article, we will discuss how to convert Comma-separated string values into List or specifically ArrayList We will illustrate 2 examples for converting comma-separated Read More
In this article, we will discuss how to add elements to LinkedList at the beginning/start & end 1. Add elements to LinkedList : There are Read More
In this article, we will discuss how to convert LinkedList to ArrayList LinkedList to ArrayList conversion : LinkedListToArrayList.java Output : Related Articles : References : Read More
In this article, we will discuss how to convert ArrayList to LinkedList ArrayList to LinkedList conversion : ArrayListToLinkedList.java Output : Related Articles : References : Read More
In this article, we will discuss how to convert java.util.Date to java.sql.Date and vice-versa 1. java.util.Date class : 2. java.sql.Date class : 3. java.util.Date to Read More
In this article, we will discuss how to compare 2 Date instances using compareTo() method 1. Date.compareTo() method : 2. Date.compareTo() example : Compare2Dates.java Output Read More
In this article, we will learn how to iterate over char[] Arrays in different ways Iterate over char[] Arrays : Using Java 8 Stream.chars() method Read More
In this article, we will learn how to convert Celsius to Fahrenheit and vice-versa 1. Convert Celsius to Fahrenheit : Single conversion using straight calculation Read More
In this article, we will learn how to convert Roman letters (I, II, III, IV, V, VI, etc.,) into Integer (1, 2, 3, 4, 5, Read More
In this article, we will learn how to generate Fibonacci numbers using Stream and other loop structure Generate Fibonacci Series/Numbers : Using Java 8 Stream Read More
In this article, we will learn how to count length of last word in a String using String‘s length() method Count length of Last word Read More
In this article, we will learn how to remove last comma (,) from a String using String‘s substring() method and Java 8 Stream Remove last Read More
In this article, we will learn how to remove special characters from the given String Remove special characters from given String : Using Java 1.7 Read More
In this article, we will learn how to convert duplicate characters/occurrences to Uppercase letter in a String In one of the previous article, we already Read More
In this article, we will discuss how to convert first character of every word to uppercase using Java 1.8 version In one of the previous Read More
In this article, we will learn how to check whether a particular number exists in an Arrays or List or Stream using Java 8 Stream Read More
In this article, we will learn how to check whether a given Date is weekend or not ? Check given Date is weekend : Using Read More