In this section, you will learn how to convert a char into a string type data.
Convert Character into a String
In this section, you will learn how to convert a char into a string type data. The java.lang package provides the functionality to convert a character into a string.
Code Description:
This program takes a character at the console and converts it into a string format using by the toString() method. This method converts the character into an integer type data. The character class wraps a value of the primitive type char in an object. The toString method returns a string object representing this character's values.
Here is the code of this program:
import java.io.*;
|
Output of this program.
C:\corejava>java CharToString Enter a Character: R Character value is R String value is R C:\corejava> |