Category Java

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.

How to Convert String to Char in Java

How to convert string to char in Java

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…

How to Convert Double to String in Java

In this tutorial, we will learn how to convert primitive double or Java wrapper double class object to string in Java. Sometimes, we need to convert values from one data type to another, under certain situation. For example, if we…

How to Convert String to Double in Java

How to convert string to double in Java

In this tutorial, we will learn how to convert string to primitive type double or double wrapper class object in Java easily. There are certain situations where we need to convert a number represented as a string into a double…

How to Convert Float to String in Java

In this tutorial, we will learn how to convert primitive type float or wrapper Float class object to string in Java. Sometimes, we need to convert values from one data type to another, under certain situation. For example, if we…

How to Convert String to Float in Java

In this tutorial, we will learn how to convert string to primitive type float or float wrapper class object in Java easily. There are certain situations where we need to convert a number represented as a string into a float…