I have a question regarding the Difference between StringTokenizer class and java.util.Scanner class? Though both are used for Dissection (tokenization) purpose. Which one is better to use and have better efficiency? Are these two java classes are alternatives for each other or have separate purposes?
|
|
||||
|
|
|
From the
|
|||||||||||||
|
|
From StringTokenizer javadoc
From Scanner javadoc
So Scanner unlike StringTokenizer have methods like nextInt, nextBoolean etc. While Scanner is usefull in some cases when you need to parse user input containig numbers, StringTokenizer in most cases can be replaced with org.apache.commons.lang.StringUtils.split - which doesn't use regular expressions and is pretty fast. |
|||
|
|
|
One big difference is that a Scanner can operate on input streams, so you do not need to have it in memory all at once (which in some cases is not even possible, for example when continuously reading user input from a console). |
|||
|
|
|
Scanner is designed for cases where you need to parse a string, pulling out data of different types.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. |
|||
|
|
