There are several Java classes that support simple tokenization; some of them are as follows:
- Scanner
- String
- BreakIterator
- StreamTokenizer
- StringTokenizer
Although these classes provide limited support, it is useful to understand how they can be used. For some tasks, these classes will suffice. Why use a more difficult-to-understand and less-efficient approach when a core Java class can do the job? We will cover each of these classes as they support the tokenization process.
The StreamTokenizer and StringTokenizer classes should not be used for new developments. Instead, the String class' split method is usually a better choice. They have been included here in case you come across them and wonder whether they should be used or not.