java.io
Class StreamTokenizer

java.lang.Object sample code for java.lang.Object definition code for java.lang.Object 
  extended by java.io.StreamTokenizer

public class StreamTokenizer
extends Object sample code for java.lang.Object definition code for java.lang.Object

The StreamTokenizer class takes an input stream and parses it into "tokens", allowing the tokens to be read one at a time. The parsing process is controlled by a table and a number of flags that can be set to various states. The stream tokenizer can recognize identifiers, numbers, quoted strings, and various comment styles.

Each byte read from the input stream is regarded as a character in the range '\u0000' through '\u00FF'. The character value is used to look up five possible attributes of the character: white space, alphabetic, numeric, string quote, and comment character. Each character can have zero or more of these attributes.

In addition, an instance has four flags. These flags indicate:

A typical application first constructs an instance of this class, sets up the syntax tables, and then repeatedly loops calling the nextToken method in each iteration of the loop until it returns the value TT_EOF.

Since:
JDK1.0
See Also:
nextToken() sample code for java.io.StreamTokenizer.nextToken() definition code for java.io.StreamTokenizer.nextToken() , TT_EOF sample code for java.io.StreamTokenizer.TT_EOF definition code for java.io.StreamTokenizer.TT_EOF

Field Summary
 double nval sample code for java.io.StreamTokenizer.nval definition code for java.io.StreamTokenizer.nval
          If the current token is a number, this field contains the value of that number.
 String sample code for java.lang.String definition code for java.lang.String sval sample code for java.io.StreamTokenizer.sval definition code for java.io.StreamTokenizer.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 sample code for java.io.StreamTokenizer.TT_EOF definition code for java.io.StreamTokenizer.TT_EOF
          A constant indicating that the end of the stream has been read.
static int TT_EOL sample code for java.io.StreamTokenizer.TT_EOL definition code for java.io.StreamTokenizer.TT_EOL
          A constant indicating that the end of the line has been read.
static int TT_NUMBER sample code for java.io.StreamTokenizer.TT_NUMBER definition code for java.io.StreamTokenizer.TT_NUMBER
          A constant indicating that a number token has been read.
static int TT_WORD sample code for java.io.StreamTokenizer.TT_WORD definition code for java.io.StreamTokenizer.TT_WORD
          A constant indicating that a word token has been read.
 int ttype sample code for java.io.StreamTokenizer.ttype definition code for java.io.StreamTokenizer.ttype
          After a call to the nextToken method, this field contains the type of the token just read.
 
Constructor Summary
StreamTokenizer sample code for java.io.StreamTokenizer.StreamTokenizer(java.io.InputStream) definition code for java.io.StreamTokenizer.StreamTokenizer(java.io.InputStream) (InputStream sample code for java.io.InputStream definition code for java.io.InputStream  is)
          Deprecated. As of JDK version 1.1, the preferred way to tokenize an input stream is to convert it into a character stream, for example:
   Reader r = new BufferedReader(new InputStreamReader(is));
   StreamTokenizer st = new StreamTokenizer(r);
 
StreamTokenizer sample code for java.io.StreamTokenizer.StreamTokenizer(java.io.Reader) definition code for java.io.StreamTokenizer.StreamTokenizer(java.io.Reader) (Reader sample code for java.io.Reader definition code for java.io.Reader  r)
          Create a tokenizer that parses the given character stream.
 
Method Summary
 void commentChar sample code for java.io.StreamTokenizer.commentChar(int) definition code for java.io.StreamTokenizer.commentChar(int) (int ch)
          Specified that the character argument starts a single-line comment.
 void eolIsSignificant sample code for java.io.StreamTokenizer.eolIsSignificant(boolean) definition code for java.io.StreamTokenizer.eolIsSignificant(boolean) (boolean flag)
          Determines whether or not ends of line are treated as tokens.
 int lineno sample code for java.io.StreamTokenizer.lineno() definition code for java.io.StreamTokenizer.lineno() ()
          Return the current line number.
 void lowerCaseMode sample code for java.io.StreamTokenizer.lowerCaseMode(boolean) definition code for java.io.StreamTokenizer.lowerCaseMode(boolean) (boolean fl)
          Determines whether or not word token are automatically lowercased.
 int nextToken sample code for java.io.StreamTokenizer.nextToken() definition code for java.io.StreamTokenizer.nextToken() ()
          Parses the next token from the input stream of this tokenizer.
 void ordinaryChar sample code for java.io.StreamTokenizer.ordinaryChar(int) definition code for java.io.StreamTokenizer.ordinaryChar(int) (int ch)
          Specifies that the character argument is "ordinary" in this tokenizer.
 void ordinaryChars sample code for java.io.StreamTokenizer.ordinaryChars(int, int) definition code for java.io.StreamTokenizer.ordinaryChars(int, int) (int low, int hi)
          Specifies that all characters c in the range low <= c <= high are "ordinary" in this tokenizer.
 void parseNumbers sample code for java.io.StreamTokenizer.parseNumbers() definition code for java.io.StreamTokenizer.parseNumbers() ()
          Specifies that numbers should be parsed by this tokenizer.
 void pushBack sample code for java.io.StreamTokenizer.pushBack() definition code for java.io.StreamTokenizer.pushBack() ()
          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.
 void quoteChar sample code for java.io.StreamTokenizer.quoteChar(int) definition code for java.io.StreamTokenizer.quoteChar(int) (int ch)
          Specifies that matching pairs of this character delimit string constants in this tokenizer.
 void resetSyntax sample code for java.io.StreamTokenizer.resetSyntax() definition code for java.io.StreamTokenizer.resetSyntax() ()
          Resets this tokenizer's syntax table so that all characters are "ordinary." See the ordinaryChar method for more information on a character being ordinary.
 void slashSlashComments sample code for java.io.StreamTokenizer.slashSlashComments(boolean) definition code for java.io.StreamTokenizer.slashSlashComments(boolean) (boolean flag)
          Determines whether or not the tokenizer recognizes C++-style comments.
 void slashStarComments sample code for java.io.StreamTokenizer.slashStarComments(boolean) definition code for java.io.StreamTokenizer.slashStarComments(boolean) (boolean flag)
          Determines whether or not the tokenizer recognizes C-style comments.
 String sample code for java.lang.String definition code for java.lang.String toString sample code for java.io.StreamTokenizer.toString() definition code for java.io.StreamTokenizer.toString() ()
          Returns the string representation of the current stream token and the line number it occurs on.
 void whitespaceChars sample code for java.io.StreamTokenizer.whitespaceChars(int, int) definition code for java.io.StreamTokenizer.whitespaceChars(int, int) (int low, int hi)
          Specifies that all characters c in the range low <= c <= high are white space characters.
 void wordChars sample code for java.io.StreamTokenizer.wordChars(int, int) definition code for java.io.StreamTokenizer.wordChars(int, int) (int low, int hi)
          Specifies that all characters c in the range low <= c <= high are word constituents.
 
Methods inherited from class java.lang.Object sample code for java.lang.Object definition code for java.lang.Object
clone sample code for java.lang.Object.clone() definition code for java.lang.Object.clone() , equals sample code for java.lang.Object.equals(java.lang.Object) definition code for java.lang.Object.equals(java.lang.Object) , finalize sample code for java.lang.Object.finalize() definition code for java.lang.Object.finalize() , getClass sample code for java.lang.Object.getClass() definition code for java.lang.Object.getClass() , hashCode sample code for java.lang.Object.hashCode() definition code for java.lang.Object.hashCode() , notify sample code for java.lang.Object.notify() definition code for java.lang.Object.notify() , notifyAll sample code for java.lang.Object.notifyAll() definition code for java.lang.Object.notifyAll() , wait sample code for java.lang.Object.wait() definition code for java.lang.Object.wait() , wait sample code for java.lang.Object.wait(long) definition code for java.lang.Object.wait(long) , wait sample code for java.lang.Object.wait(long, int) definition code for java.lang.Object.wait(long, int)
 

Field Detail

ttype sample code for java.io.StreamTokenizer.ttype

public int ttype
After a call to the nextToken method, this field contains the type of the token just read. For a single character token, its value is the single character, converted to an integer. For a quoted string token (see , its value is the quote character. Otherwise, its value is one of the following:

The initial value of this field is -4.

See Also:
eolIsSignificant(boolean) sample code for java.io.StreamTokenizer.eolIsSignificant(boolean) definition code for java.io.StreamTokenizer.eolIsSignificant(boolean) , nextToken() sample code for java.io.StreamTokenizer.nextToken() definition code for java.io.StreamTokenizer.nextToken() , quoteChar(int) sample code for java.io.StreamTokenizer.quoteChar(int) definition code for java.io.StreamTokenizer.quoteChar(int) , TT_EOF sample code for java.io.StreamTokenizer.TT_EOF definition code for java.io.StreamTokenizer.TT_EOF , TT_EOL sample code for java.io.StreamTokenizer.TT_EOL definition code for java.io.StreamTokenizer.TT_EOL , TT_NUMBER sample code for java.io.StreamTokenizer.TT_NUMBER definition code for java.io.StreamTokenizer.TT_NUMBER , TT_WORD sample code for java.io.StreamTokenizer.TT_WORD definition code for java.io.StreamTokenizer.TT_WORD

TT_EOF sample code for java.io.StreamTokenizer.TT_EOF

public static final int TT_EOF
A constant indicating that the end of the stream has been read.

See Also:
Constant Field Values

TT_EOL sample code for java.io.StreamTokenizer.TT_EOL

public static final int TT_EOL
A constant indicating that the end of the line has been read.

See Also:
Constant Field Values

TT_NUMBER sample code for java.io.StreamTokenizer.TT_NUMBER

public static final int TT_NUMBER
A constant indicating that a number token has been read.

See Also:
Constant Field Values

TT_WORD sample code for java.io.StreamTokenizer.TT_WORD

public static final int TT_WORD
A constant indicating that a word token has been read.

See Also:
Constant Field Values

sval sample code for java.io.StreamTokenizer.sval

public String sample code for java.lang.String definition code for java.lang.String  sval
If the current token is a word token, this field contains a string giving the characters of the word token. When the current token is a quoted string token, this field contains the body of the string.

The current token is a word when the value of the ttype field is TT_WORD. The current token is a quoted string token when the value of the ttype field is a quote character.

The initial value of this field is null.

See Also:
quoteChar(int) sample code for java.io.StreamTokenizer.quoteChar(int) definition code for java.io.StreamTokenizer.quoteChar(int) , TT_WORD sample code for java.io.StreamTokenizer.TT_WORD definition code for java.io.StreamTokenizer.TT_WORD , ttype sample code for java.io.StreamTokenizer.ttype definition code for java.io.StreamTokenizer.ttype

nval sample code for java.io.StreamTokenizer.nval

public double nval
If the current token is a number, this field contains the value of that number. The current token is a number when the value of the ttype field is TT_NUMBER.

The initial value of this field is 0.0.

See Also:
TT_NUMBER sample code for java.io.StreamTokenizer.TT_NUMBER definition code for java.io.StreamTokenizer.TT_NUMBER , ttype sample code for java.io.StreamTokenizer.ttype definition code for java.io.StreamTokenizer.ttype
Constructor Detail

StreamTokenizer sample code for java.io.StreamTokenizer(java.io.InputStream) definition code for java.io.StreamTokenizer(java.io.InputStream)

@Deprecated
public StreamTokenizer(InputStream sample code for java.io.InputStream definition code for java.io.InputStream  is)
Deprecated. As of JDK version 1.1, the preferred way to tokenize an input stream is to convert it into a character stream, for example:
   Reader r = new BufferedReader(new InputStreamReader(is));
   StreamTokenizer st = new StreamTokenizer(r);
 

Creates a stream tokenizer that parses the specified input stream. The stream tokenizer is initialized to the following default state:

Parameters:
is - an input stream.
See Also:
BufferedReader sample code for java.io.BufferedReader definition code for java.io.BufferedReader , InputStreamReader sample code for java.io.InputStreamReader definition code for java.io.InputStreamReader , StreamTokenizer(java.io.Reader) sample code for java.io.StreamTokenizer.StreamTokenizer(java.io.Reader) definition code for java.io.StreamTokenizer.StreamTokenizer(java.io.Reader)

StreamTokenizer sample code for java.io.StreamTokenizer(java.io.Reader) definition code for java.io.StreamTokenizer(java.io.Reader)

public StreamTokenizer(Reader sample code for java.io.Reader definition code for java.io.Reader  r)
Create a tokenizer that parses the given character stream.

Parameters:
r - a Reader object providing the input stream.
Since:
JDK1.1
Method Detail

resetSyntax sample code for java.io.StreamTokenizer.resetSyntax() definition code for java.io.StreamTokenizer.resetSyntax()

public void resetSyntax()
Resets this tokenizer's syntax table so that all characters are "ordinary." See the ordinaryChar method for more information on a character being ordinary.

See Also:
ordinaryChar(int) sample code for java.io.StreamTokenizer.ordinaryChar(int) definition code for java.io.StreamTokenizer.ordinaryChar(int)

wordChars sample code for java.io.StreamTokenizer.wordChars(int, int) definition code for java.io.StreamTokenizer.wordChars(int, int)

public void wordChars(int low,
                      int hi)
Specifies that all characters c in the range low <= c <= high are word constituents. A word token consists of a word constituent followed by zero or more word constituents or number constituents.

Parameters:
low - the low end of the range.
hi - the high end of the range.

whitespaceChars sample code for java.io.StreamTokenizer.whitespaceChars(int, int) definition code for java.io.StreamTokenizer.whitespaceChars(int, int)

public void whitespaceChars(int low,
                            int hi)
Specifies that all characters c in the range low <= c <= high are white space characters. White space characters serve only to separate tokens in the input stream.

Any other attribute settings for the characters in the specified range are cleared.

Parameters:
low - the low end of the range.
hi - the high end of the range.

ordinaryChars sample code for java.io.StreamTokenizer.ordinaryChars(int, int) definition code for java.io.StreamTokenizer.ordinaryChars(int, int)

public void ordinaryChars(int low,
                          int hi)
Specifies that all characters c in the range low <= c <= high are "ordinary" in this tokenizer. See the ordinaryChar method for more information on a character being ordinary.

Parameters:
low - the low end of the range.
hi - the high end of the range.
See Also:
ordinaryChar(int) sample code for java.io.StreamTokenizer.ordinaryChar(int) definition code for java.io.StreamTokenizer.ordinaryChar(int)

ordinaryChar sample code for java.io.StreamTokenizer.ordinaryChar(int) definition code for java.io.StreamTokenizer.ordinaryChar(int)

public void ordinaryChar(int ch)
Specifies that the character argument is "ordinary" in this tokenizer. It removes any special significance the character has as a comment character, word component, string delimiter, white space, or number character. When such a character is encountered by the parser, the parser treats it as a single-character token and sets ttype field to the character value.

Making a line terminator character "ordinary" may interfere with the ability of a StreamTokenizer to count lines. The lineno method may no longer reflect the presence of such terminator characters in its line count.

Parameters:
ch - the character.
See Also:
ttype sample code for java.io.StreamTokenizer.ttype definition code for java.io.StreamTokenizer.ttype

commentChar sample code for java.io.StreamTokenizer.commentChar(int) definition code for java.io.StreamTokenizer.commentChar(int)

public void commentChar(int ch)
Specified that the character argument starts a single-line comment. All characters from the comment character to the end of the line are ignored by this stream tokenizer.

Any other attribute settings for the specified character are cleared.

Parameters:
ch - the character.

quoteChar sample code for java.io.StreamTokenizer.quoteChar(int) definition code for java.io.StreamTokenizer.quoteChar(int)

public void quoteChar(int ch)
Specifies that matching pairs of this character delimit string constants in this tokenizer.

When the nextToken method encounters a string constant, the ttype field is set to the string delimiter and the sval field is set to the body of the string.

If a string quote character is encountered, then a string is recognized, consisting of all characters after (but not including) the string quote character, up to (but not including) the next occurrence of that same string quote character, or a line terminator, or end of file. The usual escape sequences such as "\n" and "\t" are recognized and converted to single characters as the string is parsed.

Any other attribute settings for the specified character are cleared.

Parameters:
ch - the character.
See Also:
nextToken() sample code for java.io.StreamTokenizer.nextToken() definition code for java.io.StreamTokenizer.nextToken() , sval sample code for java.io.StreamTokenizer.sval definition code for java.io.StreamTokenizer.sval , ttype sample code for java.io.StreamTokenizer.ttype definition code for java.io.StreamTokenizer.ttype

parseNumbers sample code for java.io.StreamTokenizer.parseNumbers() definition code for java.io.StreamTokenizer.parseNumbers()

public void parseNumbers()
Specifies that numbers should be parsed by this tokenizer. The syntax table of this tokenizer is modified so that each of the twelve characters:
      0 1 2 3 4 5 6 7 8 9 . -
 

has the "numeric" attribute.

When the parser encounters a word token that has the format of a double precision floating-point number, it treats the token as a number rather than a word, by setting the ttype field to the value TT_NUMBER and putting the numeric value of the token into the nval field.

See Also:
nval sample code for java.io.StreamTokenizer.nval definition code for java.io.StreamTokenizer.nval , TT_NUMBER sample code for java.io.StreamTokenizer.TT_NUMBER definition code for java.io.StreamTokenizer.TT_NUMBER , ttype sample code for java.io.StreamTokenizer.ttype definition code for java.io.StreamTokenizer.ttype

eolIsSignificant sample code for java.io.StreamTokenizer.eolIsSignificant(boolean) definition code for java.io.StreamTokenizer.eolIsSignificant(boolean)

public void eolIsSignificant(boolean flag)
Determines whether or not ends of line are treated as tokens. If the flag argument is true, this tokenizer treats end of lines as tokens; the nextToken method returns TT_EOL and also sets the ttype field to this value when an end of line is read.

A line is a sequence of characters ending with either a carriage-return character ('\r') or a newline character ('\n'). In addition, a carriage-return character followed immediately by a newline character is treated as a single end-of-line token.

If the flag is false, end-of-line characters are treated as white space and serve only to separate tokens.

Parameters:
flag - true indicates that end-of-line characters are separate tokens; false indicates that end-of-line characters are white space.
See Also:
nextToken() sample code for java.io.StreamTokenizer.nextToken() definition code for java.io.StreamTokenizer.nextToken() , ttype sample code for java.io.StreamTokenizer.ttype definition code for java.io.StreamTokenizer.ttype , TT_EOL sample code for java.io.StreamTokenizer.TT_EOL definition code for java.io.StreamTokenizer.TT_EOL

slashStarComments sample code for java.io.StreamTokenizer.slashStarComments(boolean) definition code for java.io.StreamTokenizer.slashStarComments(boolean)

public void slashStarComments(boolean flag)
Determines whether or not the tokenizer recognizes C-style comments. If the flag argument is true, this stream tokenizer recognizes C-style comments. All text between successive occurrences of /* and */ are discarded.

If the flag argument is false, then C-style comments are not treated specially.

Parameters:
flag - true indicates to recognize and ignore C-style comments.

slashSlashComments sample code for java.io.StreamTokenizer.slashSlashComments(boolean) definition code for java.io.StreamTokenizer.slashSlashComments(boolean)

public void slashSlashComments(boolean flag)
Determines whether or not the tokenizer recognizes C++-style comments. If the flag argument is true, this stream tokenizer recognizes C++-style comments. Any occurrence of two consecutive slash characters ('/') is treated as the beginning of a comment that extends to the end of the line.

If the flag argument is false, then C++-style comments are not treated specially.

Parameters:
flag - true indicates to recognize and ignore C++-style comments.

lowerCaseMode sample code for java.io.StreamTokenizer.lowerCaseMode(boolean) definition code for java.io.StreamTokenizer.lowerCaseMode(boolean)

public void lowerCaseMode(boolean fl)
Determines whether or not word token are automatically lowercased. If the flag argument is true, then the value in the sval field is lowercased whenever a word token is returned (the ttype field has the value TT_WORD by the nextToken method of this tokenizer.

If the flag argument is false, then the sval field is not modified.

Parameters:
fl - true indicates that all word tokens should be lowercased.
See Also:
nextToken() sample code for java.io.StreamTokenizer.nextToken() definition code for java.io.StreamTokenizer.nextToken() , ttype sample code for java.io.StreamTokenizer.ttype definition code for java.io.StreamTokenizer.ttype , TT_WORD sample code for java.io.StreamTokenizer.TT_WORD definition code for java.io.StreamTokenizer.TT_WORD

nextToken sample code for java.io.StreamTokenizer.nextToken() definition code for java.io.StreamTokenizer.nextToken()

public int nextToken()
              throws IOException sample code for java.io.IOException definition code for java.io.IOException 
Parses the next token from the input stream of this tokenizer. The type of the next token is returned in the ttype field. Additional information about the token may be in the nval field or the sval field of this tokenizer.

Typical clients of this class first set up the syntax tables and then sit in a loop calling nextToken to parse successive tokens until TT_EOF is returned.

Returns:
the value of the ttype field.
Throws:
IOException sample code for java.io.IOException definition code for java.io.IOException - if an I/O error occurs.
See Also:
nval sample code for java.io.StreamTokenizer.nval definition code for java.io.StreamTokenizer.nval , sval sample code for java.io.StreamTokenizer.sval definition code for java.io.StreamTokenizer.sval , ttype sample code for java.io.StreamTokenizer.ttype definition code for java.io.StreamTokenizer.ttype

pushBack sample code for java.io.StreamTokenizer.pushBack() definition code for java.io.StreamTokenizer.pushBack()

public void pushBack()
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.

See Also:
nextToken() sample code for java.io.StreamTokenizer.nextToken() definition code for java.io.StreamTokenizer.nextToken() , nval sample code for java.io.StreamTokenizer.nval definition code for java.io.StreamTokenizer.nval , sval sample code for java.io.StreamTokenizer.sval definition code for java.io.StreamTokenizer.sval , ttype sample code for java.io.StreamTokenizer.ttype definition code for java.io.StreamTokenizer.ttype

lineno sample code for java.io.StreamTokenizer.lineno() definition code for java.io.StreamTokenizer.lineno()

public int lineno()
Return the current line number.

Returns:
the current line number of this stream tokenizer.

toString sample code for java.io.StreamTokenizer.toString() definition code for java.io.StreamTokenizer.toString()

public String sample code for java.lang.String definition code for java.lang.String  toString()
Returns the string representation of the current stream token and the line number it occurs on.

The precise string returned is unspecified, although the following example can be considered typical:

Token['a'], line 10

Overrides:
toString sample code for java.lang.Object.toString() definition code for java.lang.Object.toString() in class Object sample code for java.lang.Object definition code for java.lang.Object
Returns:
a string representation of the token
See Also:
nval sample code for java.io.StreamTokenizer.nval definition code for java.io.StreamTokenizer.nval , sval sample code for java.io.StreamTokenizer.sval definition code for java.io.StreamTokenizer.sval , ttype sample code for java.io.StreamTokenizer.ttype definition code for java.io.StreamTokenizer.ttype