Java Basics
-
java.lang.InterruptedException – How to handle InterruptedException
In this example we will discuss about InterruptedException in Java. This exception is thrown when a thread is interrupted. The…
Read More » -
java.lang.UnsupportedOperationException – How to handle UnsupportedOperationException
In this tutorial we will discuss about UnsupportedOperationException in Java. This exception is thrown to indicate that the requested operation…
Read More » -
Java 8 Lambda Expressions Tutorial
In this article we are going to explain what Lambdas are, why are they important and how do they look…
Read More » -
java.util.NoSuchElementException – How to solve NoSuchElementException
In this tutorial, we will discuss about the java.util.nosuchelementexception in Java. This exception is thrown to indicate that there are…
Read More » -
java.io.NotSerializableException – How to solve Not Serializable Exception
In this tutorial we will discuss about NotSerializableException in Java. The exception is thrown when an instance of a class…
Read More » -
Java String to Date Example
Java gives us the capability to convert String to Date. This can be done through DateFormat and SimpleDateFormat classes, where…
Read More » -
Java String to char Example
String to char conversion is a very simple procedure in Java. This process is useful when we want to use…
Read More » -
Java String to Float Example
float is a frequently used data type of 32-bit and it represents decimal numbers. The main difference from double is…
Read More » -
java.lang.NoClassDefFoundError – How to solve No Class Def Found Error
In this tutorial we will discuss How to solve No Class Def Found Error (NoClassDefFoundError). This error is thrown when…
Read More » -
java.lang.ClassCastException – How to solve ClassCastException
In this tutorial, we will the classcastexception. This exception is used to indicate that the application’s code has attempted to…
Read More »