StreamTokenizer 

Introduction

The Java.io.StreamTokenizer class takes an input stream and parses it into “tokens”, allowing the tokens to be read one at a time. The stream tokenizer can recognize identifiers, numbers, quoted strings, and various comment styles.

Class declaration

Following is the declaration for Java.io.StreamTokenizer class −

public class StreamTokenizer
   extends Object

Learn Java in-depth with real-world projects through our Java certification course. Enroll and become a certified expert to boost your career.

Field

Following are the fields for Java.io.StreamTokenizer class −

  • double nval − If the current token is a number, this field contains the value of that number.
  • String sval − If the current token is a word token, this field contains a string giving the characters of the word token.
  • static int TT_EOF − A constant indicating that the end of the stream has been read.
  • static int TT_EOL − A constant indicating that the end of the line has been read.
  • static int TT_NUMBER − A constant indicating that a number token has been read.
  • static int TT_WORD − A constant indicating that a word token has been read.
  • int ttype − After a call to the nextToken method, this field contains the type of the token just read.

Class constructors

Sr.No.Constructor & Description
1StreamTokenizer(Reader r)This creates a tokenizer that parses the given character stream.

Class methods

Sr.No.Method & Description
1void commentChar(int ch)Specified that the character argument starts a single-line comment.
2void eolIsSignificant(boolean flag)This method determines whether or not ends of line are treated as tokens.
3int lineno()This method returns the current line number.
4void lowerCaseMode(boolean fl)This method determines whether or not word token are automatically lowercased.
5int nextToken()This method parses the next token from the input stream of this tokenizer.
6void ordinaryChar(int ch)This method specifies that the character argument is “ordinary” in this tokenizer.
7void ordinaryChars(int low, int hi)This method specifies that all characters c in the range low <= c <= high are “ordinary” in this tokenizer.
8void parseNumbers()This method specifies that numbers should be parsed by this tokenizer.
9void pushBack()This method causes the next call to the nextToken method of this tokenizer to return the current value in the ttype field, and not to modify the value in the nval or sval field.
10void quoteChar(int ch)This method specifies that matching pairs of this character delimit string constants in this tokenizer.
11void resetSyntax()This method resets this tokenizer’s syntax table so that all characters are “ordinary.” See the ordinaryChar method for more information on a character being ordinary.
12void slashSlashComments(boolean flag)This method determines whether or not the tokenizer recognizes C++ style comments.
13void slashStarComments(boolean flag)This method determines whether or not the tokenizer recognizes C style comments.
14String toString()This method returns the string representation of the current stream token and the line number it occurs on.
15void whitespaceChars(int low, int hi)This method specifies that all characters c in the range low <= c <= high are white space characters.
16void wordChars(int low, int hi)This method specifies that all characters c in the range low <= c >= high are word constituents.

Methods inherited

This class inherits methods from the following classes −

  • Java.io.Object

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *