Here you can find the source of combine(String[] words)
public static String combine(String[] words)
//package com.java2s; //License from project: Open Source License public class Main { public static String combine(String[] words) { String str = ""; for (String word : words) { str = str + word;/*from w w w. j a va2s . co m*/ } return str; } }