What is String Tokenizer in Java?
The string tokenizer class allows an application to break a string into tokens. It is very easy to use.
old way:
String[] result = "this is a test".split("\\s");
for (int x=0; x<result.length; x++)
System.out.println(result[x]);
New way:
StringTokenizer...