Search Results for: java 8
-
Core Java
Stop Java Code Running
In Java, stopping the execution of further code is often achieved using the return statement. Placed within a method, “return”…
Read More » -
Core Java
What is new in Java 19
Java 19 was released in September 2022 aiming to bring new features and enhancements for the Java community along with…
Read More » -
Core Java
Java Set Draw Example
In Java, when dealing with collections, it’s often useful to retrieve a random element – draw – from a Set.…
Read More » -
Core Java
Convert JSON To Java Map – Maps Comparison
Understanding how to read JSON documents as maps provides a powerful toolset for developers and data analysts. This introduction explores…
Read More » -
Core Java
Running a SQL Script File in Java
In Java, we can interact with databases using various libraries and frameworks, but sometimes we may need to run SQL…
Read More » -
Core Java
Java – Convert Epoch Time to LocalDate
In this article, we’ll delve into how to convert Epoch Time to LocalDate and LocalDateTime in Java. These classes are…
Read More » -
Core Java
Calculate the Distance Between Two Coordinates in Java
Calculating the distance between two coordinates is often an interesting learning. In this article, we will see a practical approach…
Read More » -
Core Java
Computing the Sum of Two Arrays in Java
When working with arrays in Java, it is often necessary to perform various operations on them. One task could be…
Read More » -
spring
Using Java Records with Spring Data JPA
Java Records have become a valuable feature in modern Java development, introduced in Java 16. They simplify the creation of…
Read More »