Jodd is an open-source java library with lot of reusable components and feature rich utilities. This requires the library jodd-3.3.2.jar to be in classpath. The following example shows how to use StringUtil.join() API.
package com.bethecoder.tutorials.jodd.utils; import java.util.Arrays; import jodd.util.StringUtil; public class StringJoinTest2 { /** * @param args */ public static void main(String[] args) { System.out.println(StringUtil.join(Arrays.asList("1", "2", "3", "4"), ".")); System.out.println(StringUtil.join(Arrays.asList("www", "bethecoder", "com"), ".")); System.out.println(StringUtil.join(Arrays.asList("A", "B", "C", "D"), "-:-")); } }
1.2.3.4 www.bethecoder.com A-:-B-:-C-:-D