Create a String from a Java Array



You can convert an array of Strings to a single array using the collect() method.

Example

Live Demo

import java.util.Arrays;
import java.util.stream.Collectors;

public class CreatngStringFromArray {
   public static void main(String args[]) {

      String [] myArray = {"Welcome", "to", "Tutorialspoint"};
      String str = Arrays.stream(myArray).collect(Collectors.joining(" "));
      System.out.println(str);
   }
}

Output

Welcome to Tutorialspoint
Updated on: 2020-02-20T04:49:12+05:30

389 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements