StringReader 类的 Java 中重要性?
StringReader 类是 Reader 类的一个子类,它可用于读取作为字符串形式的字符流,该字符串作为 StringReader 的源代码。StringReader 类覆盖了 Reader 类的所有方法。StringReader 类的重要方法有 skip()、close()、mark()、markSupported()、reset() 等。
语法
Public class StringReader extends Reader
示例
import java.io.StringReader; import java.io.IOException; public class StringReaderTest { public static void main(String[] args) { String str = "Welcome to Tutorials Point"; StringReader strReader = new StringReader(str); try { int i; while((i=strReader.read()) != -1) { System.out.print((char)i); } } catch(IOException ioe) { System.out.println(ioe); } finally { if(strReader != null) { try { strReader.close(); } catch(Exception e) { System.out.println(e); } } } } }
输出
Welcome to Tutorials Point
广告