I have data like "abc,d",,"e", I try to use String.split and StringTokenizer to scan the input string. But the results are different. w/ String.split, the output string array has 4 data while StringTokenizer only has 3 tokens. Why they both cannot read the value after last comma? Is there other way to read all data delimitated by comma(including null value)? Message ...