Given these questions, I am assuming that you have decided not to use the HttpTokenizer class that we provided for you. That is just fine, though I will point out that HttpTokenizer completely shields you from having to worry about readers or buffered readers.
Anyway, given this assumption, what you say is right --- there i sno advantage to using a raw Reader. It would be better to use the Reader object to create a StreamTokenizer. Notice that HttpTokenizer does exactly that.
|