Here you can find the source of split(String s, String delim)
public static List<String> split(String s, String delim)
//package com.java2s; //License from project: Open Source License import java.util.Arrays; import java.util.List; public class Main { public static List<String> split(String s, String delim) { return Arrays.asList(s.split(",")); }/*from w w w.j a v a 2s . c om*/ }