Search Results for: java 8
-
Core Java
Java Holder Class
In Java, the Holder class is not part of the standard language itself. What we are referring to here is…
Read More » -
Core Java
Java Iterator vs. ListIterator
In Java, an Iterator is an interface that is part of the Java Collections Framework, which provides a way to…
Read More » -
Core Java
java.net.SocketException: Broken Pipe Error
When working with network programming in Java, you may encounter various exceptions and errors. One of the common errors you…
Read More » -
Core Java
Java jqwik Property Based Testing
Property-based testing is a powerful software testing technique that allows you to check the behavior of your code by specifying…
Read More » -
Core Java
Comparing Java Future, CompletableFuture and Rxjava Observable
Future, CompletableFuture, and RxJava observable are mechanisms for handling asynchronous and reactive programming in Java, but they have different characteristics…
Read More » -
Core Java
Fixing the Error “java lang UnsatisfiedLinkError” Custom DLL Load in Java
In this article, we will learn different approaches to fixing the ‘java lang UnsatisfiedLinkError’ error in Java, when we need…
Read More » -
Core Java
ModelMapper vs. MapStruct in Java
ModelMapper vs MapStruct in Java is a common topic of discussion in the Java community when it comes to mapping…
Read More » -
Core Java
Java String Concatenation Methods
In Java, String concatenation refers to the process of combining multiple strings into a single string. Let us explore various…
Read More » -
Core Java
Java Decimal to Hexadecimal
In Java, numerical representation plays a crucial role, and two common ways to represent numbers are decimal and hexadecimal. Decimal…
Read More »