String aaa = "1,1,2,안드로이드,신난다";
String[] bbb = aaa.Split(",");
---> bbb[0] = "1"
int c = Integer.parseInt(bbb[0]);
---> c = 1
doridori2013@nate.com