Here you can find the source of fromString(String string)
public static String[] fromString(String string)
//package com.java2s; //License from project: Open Source License public class Main { public static String[] fromString(String string) { String[] array = string.split(","); return array; }//w w w . jav a2s . co m }