Here you can find the source of merge(List
public static String merge(List<String> text)
//package com.java2s; //License from project: Open Source License import java.util.List; public class Main { public static String merge(List<String> text) { StringBuilder builder = new StringBuilder(); for (String s : text) { builder.append(s);/*from w ww . ja va2s .c o m*/ } return builder.toString(); } }