Skip to content

Instantly share code, notes, and snippets.

@sidharthkuruvila
Created August 23, 2011 07:08
Show Gist options
  • Save sidharthkuruvila/1164529 to your computer and use it in GitHub Desktop.
Save sidharthkuruvila/1164529 to your computer and use it in GitHub Desktop.
Convert an array of chars into a String
char[] chars = {72, 101, 108, 108, 111};
String s = new String(chars);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment