tl  tr
  Home | Tutorials | Articles | Videos | Products | Tools | Search
Interviews | Open Source | Tag Cloud | Follow Us | Bookmark | Contact   
 Tools and Libs > Open Symphony Core > Join List

Join List 

OSCore (Open Symphony Core) is a java library with lot of utilities and reusable components. This requires the libraries oscore-2.2.6.jar, mail.jar to be in classpath. The following example shows using TextUtils.join() API.

File Name  :  
com/bethecoder/tutorials/oscore/JoinListTest.java 
Author  :  Sudhakar KV
Email  :  [email protected]
   
package com.bethecoder.tutorials.oscore;

import java.util.Arrays;

import com.opensymphony.util.TextUtils;

public class JoinListTest {

  /**
   @param args
   */
  public static void main(String[] args) {

    String joinStr = TextUtils.join(".", Arrays.asList(123456));
    System.out.println(joinStr);
    
    joinStr = TextUtils.join("-:-", Arrays.asList("ONE""TWO""THREE""FOUR"));
    System.out.println(joinStr);
  }

}
   

It gives the following output,
1.2.3.4.5.6
ONE-:-TWO-:-THREE-:-FOUR



 
  


  
bl  br