Courses
Tutorials
Practice
Data Structure
Java
Python
HTML
Interview Preparation
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
SQL
Web Development
System Design
Aptitude
GfG Premium
Similar Topics
Web Technologies
38.9K+ articles
DSA
22.5K+ articles
Python
20.5K+ articles
Experiences
16.6K+ articles
Interview Experiences
14.1K+ articles
JavaScript
11.7K+ articles
School Learning
11.4K+ articles
Java
10.5K+ articles
Java-Functions
4.1K+ articles
Java-IO package
259+ articles
Java-StringReader
10 posts
Recent Articles
Popular Articles
StringReader markSupported() method in Java with Examples
Last Updated: 13 February 2019
The markSupported() method of StringReader Class in Java is used to check whether this StringReader is supports mark() operation or not. It returns a boolean which states ...
read more
Java
Java-Functions
Java-IO package
Java-StringReader
StringReader reset() method in Java with Examples
Last Updated: 13 February 2019
The reset() method of StringReader Class in Java is used to reset the stream. After reset, if the stream has been marked, then this method attempts to reposition it at the...
read more
Java
Java-Functions
Java-IO package
Java-StringReader
StringReader read(char[]) method in Java with Examples
Last Updated: 13 February 2019
The read(char[]) method of StringReader Class in Java is used to read the specified characters into an array. This method blocks the stream till:It has taken some input fr...
read more
Java
Java-Functions
Java-IO package
Java-StringReader
StringReader read(char[], int, int) method in Java with Examples
Last Updated: 13 February 2019
The read(char[], int, int) method of StringReader Class in Java is used to read the specified length characters into an array at a specified offset. This method blocks the...
read more
Java
Java-Functions
Java-IO package
Java-StringReader
StringReader skip(long) method in Java with Examples
Last Updated: 13 February 2019
The skip(long) method of StringReader Class in Java is used to skip the specified number of characters on the stream. This number of characters is specified as the paramet...
read more
Java
Java-Functions
Java-IO package
Java-StringReader
StringReader ready() method in Java with Examples
Last Updated: 13 February 2019
The ready() method of StringReader Class in Java is used to check whether this StringReader is ready to be read or not. It returns a boolean which states if the reader is ...
read more
Java
Java-Functions
Java-IO package
Java-StringReader
StringReader close() method in Java with Examples
Last Updated: 13 February 2019
The close() method of StringReader Class in Java is used to close the stream and release the resources that were busy in the stream, if any. This method has following resu...
read more
Java
Java-Functions
Java-IO package
Java-StringReader
StringReader read(CharBuffer) method in Java with Examples
Last Updated: 13 February 2019
The read(CharBuffer) method of StringReader Class in Java is used to read the specified characters into a CharBuffer instance. This method blocks the stream till:It has ta...
read more
Java
Java-Functions
Java-IO package
Java-StringReader
StringReader mark(int) method in Java with Examples
Last Updated: 13 February 2019
The mark() method of StringReader Class in Java is used to mark the stream as the checkpoint from where the stream read will start, once reset() is called. This method is ...
read more
Java
Java-Functions
Java-IO package
Java-StringReader
StringReader read() method in Java with Examples
Last Updated: 13 February 2019
The read() method of StringReader Class in Java is used to read a single character from the stream. This method blocks the stream till:It has taken some input from the str...
read more
Java
Java-Functions
Java-IO package
Java-StringReader
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our
Cookie Policy
&
Privacy Policy
Got It !