boolean ready int read(char cbuf, int off, int len) void reset 描述 该java.io.FilterReader.ready()方法告诉此流是否已准备好被读取。 声明 以下是java.io.FilterReader.ready()方法的声明 public boolean ready() 参数 NA 返回值 如果保证下一个read()不阻止输入,则该方法返回true,否则返回false。 异常 IOException - 如果发生I / O错误。 实例 以下示例显示了java.io.FilterReader.ready()方法的用法。 package com.tutorialspoint; import java.io.FilterReader; import java.io.Reader; import java.io.StringReader; public class FilterReaderDemo { public static void main(String[] args) throws Exception { FilterReader fr = null; Reader r = null; boolean bool = false; try { // create new reader r = new StringReader("ABCDEF"); // create new filter reader fr = new FilterReader(r) { }; // true if the filter reader is ready to be read bool = fr.ready(); // prints System.out.println("Ready to read? "+bool); } catch(Exception e) { // if any I/O error occurs e.printStackTrace(); } finally { // releases system resources associated with this stream if(r!=null) r.close(); if(fr!=null) fr.close(); } } } 让我们编译并运行上面的程序,这将产生以下结果 Ready to read? true int read(char cbuf, int off, int len) void reset