Package java.io
Class StreamTokenizer
void resetSyntax()
_INSERT_METHOD_SIGNATURE_HERE_
Description:
Resets this tokenizer's syntax table so that all characters are 'ordinary'. See the ordinaryChar method for more infromation on a character being ordinary.
Example
File file = new File("testFile");
InputStream is = new FileInputStream(file);
StreamTokenizer st = new StreamTokenizer(is);
...
st.resetSyntax();
All characters are treated as 'ordinary' character after the resetSyntax method call.