I just learned about Java's Scanner class and now I'm wondering how it compares/competes with the StringTokenizer and String.Split. I know that the StringTokenizer and String.Split only work on Strings, so why would I want to use the Scanner for a String? Is Scanner just intended to be one-stop-shopping for spliting?
|
They're essentially horses for courses.
You'll note from my timings that |
|||||||||||||||||
|
|
Let's start by eliminating
So let's throw it out right away. That leaves For one thing,
or
(It has a rather large API, so don't think that it's always restricted to such simple things.) This stream-style interface can be useful for parsing simple text files or console input, when you don't have (or can't get) all the input before starting to parse. Personally, the only time I can remember using |
|||||
|
|
If you have a String object you want to tokenize, favor using String's split method over a StringTokenizer. If you're parsing text data from a source outside your program, like from a file, or from the user, that's where a Scanner comes in handy. |
|||
|
|
|
StringTokenizer was always there. It is the fastest of all, but the enumeration-like idiom might not look as elegant as the others. split came to existence on JDK 1.4. Slower than tokenizer but easier to use, since it is callable from the String class. Scanner came to be on JDK 1.5. It is the most flexible and fills a long standing gap on the Java API to support an equivalent of the famous Cs scanf function family. |
|||||
|
|
|
String.split seems to be much slower than StringTokenizer. The only advantage with split is that you get an array of the tokens. Also you can use any regular expressions in split. org.apache.commons.lang.StringUtils has a split method which works much more faster than any of two viz. StringTokenizer or String.split. But the CPU utilization for all the three is nearly the same. So we also need a method which is less CPU intensive, which I am still not able to find. |
|||||
|
|
I recently did some experiments about the bad performance of String.split() in highly performance sensitive situations. You may find this useful. http://eblog.chrononsystems.com/hidden-evils-of-javas-stringsplit-and-stringr The gist is that String.split() compiles a Regular Expression pattern each time and can thus slow down your program, compared to if you use a precompiled Pattern object and use it directly to operate on a String. |
|||||
|
|
Split is slow, but not as slow as Scanner. StringTokenizer is faster than split, but is still twice as slow as JFastParser https://github.com/hughperkins/jfastparser Testing on a string containing one million doubles:
|
|||||
|
|
String.split() works very good but has its own boundaries, like if you wanted to split a string as shown below based on single or double pipe (|) symbol, it doesn't work. In this situation you can use StringTokenizer. ABC|IJK |
|||||
|