Here you can find the source of arrayFromString(String fromString)
public static String[] arrayFromString(String fromString)
//package com.java2s; //License from project: LGPL public class Main { public static String[] arrayFromString(String fromString) { if (fromString == null) { return null; }/*w w w. j av a2s .c om*/ return fromString.split(";"); } }