Answer Posted / neema
The StreamTokenizer class takes an input stream and parses
it into "tokens", allowing the tokens to be read one at a
time.
Reader r = new BufferedReader(new InputStreamReader(is));
StreamTokenizer st = new StreamTokenizer(r);
| Is This Answer Correct ? | 7 Yes | 1 No |
Post New Answer View All Answers
What is the purpose of format function?
What is the purpose of methodology?
How do you implement tree mirroring in java?
What is comparable and comparator interface? List their differences
Can we assign the reference to this variable?
What do you understand by an io stream?
Can an object be null?
What is functional interface in java?
How do you define a parameter?
Which variables are stored in stack?
Can we write a class without main method in java?
Which class is the superclass of all classes?
This abstract class is correct ? abstract class A { public abstract void Disp(); public abstract void B() { } public absract virtual C() { } }
What does indexof return in java?
Explain when classnotfoundexception will be raised ?