Skip to content

Java convert char to String example

This example shows how to convert char to String in Java. It also shows how to convert a character to String using several methods and the best way among them.

How to convert char to String in Java?

1) Conver char to String using the valueOf method of the String class

You can use the valueOf static method of the String class to convert.

The valueOf method returns a string representation of the specified character argument.

Output

2) Using the Character wrapper class

Use the toString method of the Character wrapper class to convert.

This method returns a string representation of the character value passed as a parameter.

Output

3) Using the string concatenation

String concatenation can be indirectly used to convert Java primitive values to a string as given below.

Output

What is the best way to convert?

The valueOf method of the String class internally calls the toString method of the Character wrapper class to convert from char to a string value. Using either of the methods is equally efficient in terms of performance. The preferred way is to use the toString method of the Character wrapper class.

String concatenation should be avoided mainly for the conversion purpose because,

a) It is difficult to visually understand that the purpose of the code statement is conversion.

b) String concatenation operation creates unnecessary temporary objects during the conversion process. String concatenation is achieved using the append method of the StringBuffer or StringBuilder class. So the code,

Will be executed like,

This example is a part of the Java Basic Examples and Java Type conversion Tutorial.

Please let me know your views in the comments section below.

About the author

Leave a Reply

Your email address will not be published.