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 jodd.util.StringUtil; public class StringJoinTest { /** * @param args */ public static void main(String[] args) { System.out.println(StringUtil.join("1", "2", "3", "4")); System.out.println(StringUtil.join("www.", "bethecoder", ".com")); System.out.println(StringUtil.join("jdbc:oracle:thin:@", "172.16.65.200:1521", "/ORCL")); } }
1234 www.bethecoder.com jdbc:oracle:thin:@172.16.65.200:1521/ORCL