Home Tutorial Java Collections Arraylist Java arraylist to comma separated string

 
 

Java arraylist to comma separated string
Posted on: October 23, 2009 at 12:00 AM
This section demonstrates how ArrayList can be converted into comma separated string

  • arrayList is converted into the comma separated string.
  • For this take one by one element from the arrayList.
  • Then add it to the String array.


Example of Java Arraylist Comma Separated String
import java.util.ArrayList;

public class List1 {
    public static void main(String[] args) {
     int ar[]={1,2,3,4};
     ArrayList list=new ArrayList();
     list.add(ar[0]);
     list.add(ar[1]);
     list.add(ar[2]);
     list.add(ar[3]);

     String a=new String();

     for(int p:ar)
     {
      Integer x=new Integer(p);
      a=a+new Integer(p).toString()+",";
     }
     System.out.println(a);
  }
}
Output
1,2,3,4

Related Tags for Java arraylist to comma separated string:


Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.