Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a char and I need a String. How do I convert from one to the other?

share|improve this question
Downvoted? Why would I ask such an easy question? Because Google lacks a really obvious search result for this question. By putting this here we'll change that. – landon9720 Nov 17 '11 at 18:40
i completely agree with your opinion. I up voted this to get rid of the negative vote. I firmly believe in making googling topics like this easier for everyone. =) – prolink007 Nov 17 '11 at 18:48
Your position is arguable (meta question?); I guess we can assume the downvote is for "lack of research". – Paul Bellora Nov 17 '11 at 18:51
I did do research. I had to click on a few search results and look at lengthy blog posts and ads. – landon9720 Nov 17 '11 at 19:30
2  
Did your research include reading the documentation of the String class? – DJClayworth Nov 17 '11 at 19:51
show 1 more comment

5 Answers

You can use Character.toString(char).

Note that this method simply returns a call to String.valueOf(char), which also works.

As others have noted, string concatenation works as a shortcut as well:

String s = "" + 's';
share|improve this answer

Use any of the following:

String str = String.valueOf('c');
String str = Character.toString('c');
String str = 'c' + "";
share|improve this answer

Try this: Character.toString(aChar) or just this: aChar + ""

share|improve this answer

Use the Character.toString() method like so

char c = 'l';
String s = Character.toString(c);
share|improve this answer

Nice question. I've got of the following five methods to do it.

String stringValueOf = String.valueOf('c');

String characterToString = Character.toString('c');

String characterObjectToString = new Character('c').toString();

String concatBlankString = 'c' + "";

String fromCharArray = new String(new char[]{x});

Refer:

  1. Java :: How to convert primitive char to String in Java
  2. How to convert Char to String in Java with Example
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.