Core Java
-
Difference between JVM, JIR, JRE, and JDK in Java
JRE, JVM, and JDK are three terms you often heard in conjunction with Java programming language, and most people either…
Read More » -
What’s the difference between map() and flatMap() methods in Java 8?
A quick guide to learn what’s the difference between Stream.map() and Stream.flatMap() methods in Java 8. 1. Overview In this…
Read More » -
Adding Partition To Existing Table In Oracle
Learn How To Add Partition To Existing Table In Oracle. New changes to partition in Oracle 12c. partitioned table using…
Read More » -
How to create a thread without implementing the Runnable interface in Java?
A quick programming guide to creating a thread without using the Runnable interface in java. This can be achieved using…
Read More » -
Adding Range Type in Java
1. Introduction Modern and more recent programming languages have the concept of a range type. Programming languages such as Python,…
Read More » -
Java String API regionMatches()
Quick guide to Java String API regionMatches() Method with Examples. This method is used to compare two sub strings. Syntax:…
Read More » -
Java 8 Optional filter()
A quick example guide to Java 8 Optional filter() Method. filter(Predicate predicate) method used to return a Optional object for…
Read More » -
How to change procedural code into object-oriented one?
What style should Clean Code be written in? Clean Code is not always object-oriented. Sometimes it will be written in…
Read More » -
Java Compress/Decompress String/Data
Java provides the Deflater class for general purpose compression using the ZLIB compression library. It also provides the DeflaterOutputStream which…
Read More »