Skip to content

Instantly share code, notes, and snippets.

@kauanmocelin
Last active April 6, 2021 20:06
Show Gist options
  • Save kauanmocelin/670b8e5f97a489e53d75194c721f57f1 to your computer and use it in GitHub Desktop.
Save kauanmocelin/670b8e5f97a489e53d75194c721f57f1 to your computer and use it in GitHub Desktop.
[Juntar itens da lista numa string separados por vírgula] #java
List<String> nomes = new ArrayList<>(Arrays.asList("Kauan", "João", "Maria"));
String nomesSeparadosPorVirgula = StringUtils.join(nomes.toArray(), ",");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment