I am unable to get the comma separated values from the excel cell using java code.
I had tried using the following code also.
String [] items = commaSeparated.split("\\s*,\\s*");
List<String> container = Arrays.asList(items);
I want the output as a list like:
IND
PAK
USA
AUS
When the input is imported from the Excel cell as IND,PAK,USA,AUS.