Here you can find the source of flatten(Collection
public static <T> String flatten(Collection<T> collection, char separator)
//package com.java2s; /******************************************************************************* * Copyright (c) 2004-2010 Sunil Kamath (IcemanK). * All rights reserved.//from www .j ava 2s.co m * This program is made available under the terms of the Common Public License * v1.0 which is available at http://www.eclipse.org/legal/cpl-v10.html * * Contributors: * Sunil Kamath (IcemanK) - initial API and implementation *******************************************************************************/ import java.util.*; public class Main { public static <T> String flatten(Collection<T> collection, char separator) { StringBuilder buf = new StringBuilder(""); //$NON-NLS-1$ if (!isEmptyCollection(collection)) { Iterator<T> iter = collection.iterator(); buf.append(String.valueOf(iter.next())); while (iter.hasNext()) { buf.append(separator).append(String.valueOf(iter.next())); } } return buf.toString(); } public static boolean isEmptyCollection(Collection<?> collection) { if (collection != null) { return collection.size() == 0; } return true; } }