Here you can find the source of joinStringCollection(Collection
final static public String joinStringCollection(Collection<String> collection, String separator)
//package com.java2s; /**// w w w .j a v a2 s . c o m * Copyright (C) 2011 Headvances Inc. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program 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 Affero General Public License for more details. * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. * * This project aim to build a set of library/data to process * the Vietnamese language and analyze the web data **/ import java.util.Collection; import java.util.Iterator; public class Main { final static public String joinStringCollection(Collection<String> collection, String separator) { if (collection == null) return null; if (collection.size() == 0) return ""; StringBuilder b = new StringBuilder(); Iterator<String> i = collection.iterator(); while (i.hasNext()) { if (b.length() > 0) b.append(separator); b.append(i.next()); } return b.toString(); } }