How can I convert a Java CharSequence to a String?

link|improve this question

68% accept rate
feedback

1 Answer

up vote 7 down vote accepted

By invoking its toString() method.

Returns a string containing the characters in this sequence in the same order as this sequence. The length of the string will be the length of this sequence.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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