Here you can find the source of joinStrings(Iterable> arr, String glue)
public static String joinStrings(Iterable<?> arr, String glue)
//package com.java2s; /*// www . j ava 2 s. c om * Copyright (C) 2010-2015 JPEXS, All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3.0 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library. */ import java.util.List; public class Main { public static String joinStrings(Iterable<?> arr, String glue) { StringBuilder ret = new StringBuilder(); boolean first = true; for (Object s : arr) { if (!first) { ret.append(glue); } else { first = false; } ret.append(s); } return ret.toString(); } public static String joinStrings(String[] arr, String glue) { StringBuilder ret = new StringBuilder(); boolean first = true; for (String s : arr) { if (!first) { ret.append(glue); } else { first = false; } ret.append(s); } return ret.toString(); } public static String joinStrings(List<String> arr, String formatString, String glue) { StringBuilder ret = new StringBuilder(); boolean first = true; for (String s : arr) { if (!first) { ret.append(glue); } else { first = false; } ret.append(String.format(formatString, s)); } return ret.toString(); } public static String joinStrings(String[] arr, String formatString, String glue) { StringBuilder ret = new StringBuilder(); boolean first = true; for (String s : arr) { if (!first) { ret.append(glue); } else { first = false; } ret.append(String.format(formatString, s)); } return ret.toString(); } public static String format(String str, int len) { if (len <= str.length()) { return str; } StringBuilder sb = new StringBuilder(str); for (int ii = str.length(); ii < len; ii++) { sb.append(' '); } return sb.toString(); } }