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> |
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
Ask Questions? Discuss: Convert Character into a String View All Comments
Post your Comment