Java Array Join join(String[] datalines)

Here you can find the source of join(String[] datalines)

Description

join

License

Apache License

Declaration

public static String join(String[] datalines) 

Method Source Code


//package com.java2s;
/*//from w  w  w  .j  a  v a  2s. co m
 * Copyright 2016 - Fabio "MrWHO" Torchetti
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import java.util.Arrays;

public class Main {
    public static String join(String[] datalines) {
        return String.join("", Arrays.asList(datalines));
    }
}

Related

  1. join(String[] array, String sep)
  2. join(String[] array, String separator)
  3. join(String[] array, String separator)
  4. join(String[] array, String separator)
  5. join(String[] arrayOfString)
  6. join(String[] elements, String separator)
  7. join(String[] elements, String separator)
  8. join(String[] inputArray, String glueString)
  9. join(String[] items, String delimiter)