I\'m trying to use com.google.common.base.Splitter as follows
Iterable segs = Splitter.on(\"/\").split(\"one/two/three/four/five\"); for (Stri
I encountered the same problem. It turned out that I used a older version of guava. Go to this website:https://code.google.com/p/guava-libraries/, and download a newer version.
By the way,google-collections was renamed to Guava.