The Java documentation doesn't seem to mention anything about deprecation for StringTokenizer, yet I keep hearing about how it was deprecated long ago. Was it deprecated because it had bugs/errors, or is String.split() simply better to use overall?

I have some code that uses StringTokenizer and I am wondering if I should seriously be concerned about refactoring it to use String.split(), or whether the deprecation is purely a matter of convenience and my code is safe.

link|improve this question

7  
StringTokenizer is a legacy class (i.e. there is a better replacement out there), but it's not deprecated. Deprecation only happens when the class/method has some serious drawbacks. A similar situation happens with Vector: you can almost always replace it with an ArrayList, but it's not "bad" or "broken", therefore it's not deprecated. – Joachim Sauer Aug 8 '11 at 14:49
1  
@Joachim if comments could be accepted I would have – donnyton Aug 9 '11 at 14:54
feedback

4 Answers

up vote 4 down vote accepted

From the javadoc for StringTokenizer:

StringTokenizer is a legacy class that is retained for compatibility reasons although its use is discouraged in new code. It is recommended that anyone seeking this functionality use the split method of String or the java.util.regex package instead.

If you look at String.split() and compare it to StringTokenizer, the relevant difference is that String.split() uses a regular expression, whereas StringTokenizer just uses verbatim split characters. So if I wanted to tokenize a string with more complex logic than single characters (e.g. split on \r\n), I can't use StringTokenizer but I can use String.split().

link|improve this answer
feedback
  1. Java 7 String Tokenizer -- not deprecated
  2. Java 6 String Tokenizer -- not deprecated
  3. Java 5 String Tokenizer -- not deprecated

If it is not marked as deprecated, it is not going away.

link|improve this answer
+1 for correcting common confusion. – Nishant Aug 8 '11 at 14:56
feedback

Personally I feel StringTokenizer was deprecated because it was simply an complex way of doing something pretty simple. StringTokenizer as the name implies only applied to Strings so why not just made it a method in String. Further StringTokenizer didn't support RegularExpression does not support regular expression which became extremely common in the late 90's and early '00's hence rendering it practically useless.

link|improve this answer
1  
it's not deprecated. – Nishant Aug 8 '11 at 14:56
1  
You're right, it's not, it's just recommended that you dont use it. The difference being that there is no guaratee that deprecated classes will continue to be provided in future releases. – Ali Aug 8 '11 at 14:58
1  
That's not correct either. There is an absolute guarantee of backwards binary compatibility. – EJP Aug 9 '11 at 0:14
feedback

I don't think so that the reason of that is String.split method, because split is slow way to parse the string - it compiles a pattern inside.

StringTokenizer just can be replaced with a more functional classes like java.util.Scanner or your can use pattern matcher to get the groups by regexp.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.