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';
But this compiles down to:
String s = new StringBuilder().append("").append('s').toString();
which is less efficient because the StringBuilder
is backed by a char[]
(over-allocated by StringBuilder()
to 16
), only for that array to be defensively copied by the resulting String
.
String.valueOf(char)
“gets in the back door” by wrapping the char
in a single-element array and passing it to the package private constructor String(char[], boolean)
, which avoids the array copy.
Related Posts:
- How do I convert a String to an int in Java?
- How to convert/parse from String to char in java?
- Convert String to double in Java
- How can I convert a char to int in Java? [duplicate]
- Illegal Escape Character “\”
- How do I apply the for-each loop to every character in a String?
- Unclosed Character Literal error
- Java – Convert integer to string [duplicate]
- How to split a string in Java
- How do I compare strings in Java?
- Reverse a string in Java
- Java String Split by “|”
- Java String new line
- “Char cannot be dereferenced” error
- String concatenation: concat() vs “+” operator
- How to remove the last character from a string?
- Convert int to char in java
- Java string to date conversion
- Change date format in a Java string
- Converting String to “Character” array in Java
- Create ArrayList from array
- Best way to convert an ArrayList to a string
- Best way to convert an ArrayList to a string
- How to split a String by space
- String interpolation in Java 14 or 15
- How can I prevent java.lang.NumberFormatException: For input string: “N/A”?
- How to remove single character from a String
- How to parse this string in Java?
- How to convert any Object to String?
- Can I multiply strings in Java to repeat sequences?
- What does regular expression \\s*,\\s* do?
- How to convert a Binary String to a base 10 integer in Java
- How to capitalize the first letter of a String in Java?
- catDog string problem at Codingbat.com
- Java way to check if a string is palindrome
- Return string Input with parse.string
- What is the difference between String.subString() and String.subSequence()
- Java – removing first character of a string
- Understanding the difference between null and ‘\u000’ in Java
- Java compressing Strings
- Explain the use of a bit vector for determining if all characters are unique
- Explain the use of a bit vector for determining if all characters are unique
- Convert array of strings into a string in Java
- Sort a single String in Java
- Converting Hexadecimal String to Decimal Integer
- How to remove single character from a String
- How to remove single character from a String
- What is Java String interning?
- What is Java String interning?
- Why is there no String.Empty in Java?
- Java split string to array
- Using Enum values as String literals
- What is the easiest/best/most correct way to iterate through the characters of a string in Java?
- int cannot be converted to string?
- How to check if my string is equal to null?
- what is Ljava.lang.String;@
- Convert String to int array in java
- Converting String Array to an Integer Array
- How to sort an array of objects in Java?
- How to sort an array of objects in Java?
- How to compress a String in Java?
- How to replace a substring of a string
- Converting A String To Hexadecimal In Java
- Immutable class?
- Converting a string to an integer on Android
- Simple way to repeat a string
- Java end of file
- Java: how to initialize String[]?
- Regular Expressions on Punctuation
- Add String Array to ArrayList
- StringIndexOutOfBoundsException String index out of range: 0
- How to extract a substring using regex
- Difference between String replace() and replaceAll()
- Java String to SHA1
- Replace a character at a specific index in a string?
- Determine if a String is an Integer in Java [duplicate]
- How to convert a String to CharSequence?
- How do I convert a String to a BigInteger?
- How can I remove a substring from a given String?
- Java get String CompareTo as a comparator object
- How to use regex in String.contains() method in Java
- How to swap String characters in Java?
- Get an OutputStream into a String
- Difference between string object and string literal
- java: use StringBuilder to insert at the beginning
- Cannot invoke toString() on the primitive type int
- How to compare character ignoring case in primitive types
- Java Not Greater than Or Equal to Operator for Char Type
- Append a single character to a string or char array in java?
- convert string to arraylist
in java - Append a single character to a string or char array in java?
- String is immutable. What exactly is the meaning?
- Why cannot cast Integer to String in java?
- Removing double quotes from a string in Java
- Occurrences of substring in a string
- Append a single character to a string or char array in java?
- Conversion from Long to Double in Java
- In Java, how do I parse XML as a String instead of a file?
- Fastest way to put contents of Set
to a single String with words separated by a whitespace? - How to know if a given string is substring from another string in Java