问题 I'm using scanner.delimiter to split my csv, with the delimiter being ",". However I have some data that includes commas in the data like "Monsters, Inc." However if I set the delimiter to "\",\"", then it crashes on everything else. Ideas that don't require me to write my own scanner.delimiter method? 回答1: I don't think scanner.delimiter will work for this kind of problem. If you have quotes in the data where the extra comas exist, you can either use a regular expression or code to solve