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 if the reader is mark supported.
Syntax:
Java
Java
public boolean markSupported()Parameters: This method does not accepts any parameters Return Value: This method returns a boolean value which tells if this StringReader supports mark() operation or not. It return true if it is markSupported. Else it returns false. Below methods illustrates the working of markSupported() method: Program 1:
// Java program to demonstrate
// StringReader markSupported() method
import java.io.*;
import java.util.*;
class GFG {
public static void main(String[] args)
{
try {
String str = "GeeksForGeeks";
// Create a StringReader instance
StringReader reader
= new StringReader(str);
// Check if the StringReader is
// markSupported using markSupported()
System.out.println("Is StringReader markSupported: "
+ reader.markSupported());
reader.close();
}
catch (Exception e) {
System.out.println(e);
}
}
}
Output:
Program 2:
Is StringReader markSupported: true
// Java program to demonstrate
// StringReader markSupported() method
import java.io.*;
import java.util.*;
class GFG {
public static void main(String[] args)
{
try {
String str = "GeeksForGeeks";
// Create a StringReader instance
StringReader reader
= new StringReader(str);
// Check if the StringReader is
// markSupported using markSupported()
System.out.println("Is StringReader markSupported: "
+ reader.markSupported());
reader.close();
}
catch (Exception e) {
System.out.println(e);
}
}
}
Output:
Reference: https://docs.oracle.com/javase/9/docs/api/java/io/StringReader.html#markSupported--Is StringReader markSupported: true