Skip to content

Instantly share code, notes, and snippets.

@sonOfRa
Created September 13, 2013 12:15
Show Gist options
  • Save sonOfRa/6549910 to your computer and use it in GitHub Desktop.
Save sonOfRa/6549910 to your computer and use it in GitHub Desktop.
public String arrListtoStr(ArrayList<String> list) {
StringBuffer buff = new StringBuffer();
for(String str : list) {
buff.append(str);
}
return str;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment