How to Convert Int to Long in Java
In this tutorial, we will learn how to convert int numeric value to long value, int value to Long wrapper object and vice versa in Java easily. To convert int to long numeric value in Java, we use an assignment…
Scientech Easy welcomes you in the Java tutorial category. We have designed this tutorial series for beginners, students, and professional developers who want to learn Java programming from basic to advanced levels. Here, you will find easy-to-understand Java tutorials, practical example programs, interview questions, and quizzes.
So, let’s start to understand Java concepts one by one with these tutorials.
In this tutorial, we will learn how to convert int numeric value to long value, int value to Long wrapper object and vice versa in Java easily. To convert int to long numeric value in Java, we use an assignment…

In this tutorial, we will learn how to convert a primitive data type boolean to a non primitive data type string in Java easily. Sometimes, we need to convert values from one data type to another, under certain situation. Therefore,…

In this tutorial, we will learn how to convert string to primitive type boolean or Boolean wrapper class object in Java easily. There are three ways to convert a string to a boolean data type. They are as follows: Convert…

In this tutorial, we will learn how to convert a primitive data type char to a non primitive data type string in Java easily. Sometimes, we need to convert values from one data type to another, under certain situation. Therefore,…

In this tutorial, we will learn how to convert string to char data type in Java easily. There are mainly two ways for converting a string into char data type in Java. They are as: Convert using charAt() method Convert…