It looks like an easy solution if this is the only String you are attempting to split.
Something like this would work for the input String you provided in your question:
java
List<String> myList = Arrays.asList(yourString.split(","));
You can use http://regexpal.com/ to help you in the future.