Uses of Class
cool.scx.io.NoMoreDataException

  • Uses of NoMoreDataException in cool.scx.io

    Methods in cool.scx.io that throw NoMoreDataException
    Modifier and Type
    Method
    Description
    byte
    ByteArrayDataReader.peek()
     
    byte[]
    ByteArrayDataReader.peek(int maxLength)
     
    void
    ByteArrayDataReader.peek(OutputStream outputStream, int maxLength)
     
    byte
    DataReader.peek()
    读取单个字节 (指针不会移动) 当没有更多的数据时会抛出异常
    byte[]
    DataReader.peek(int maxLength)
    读取指定长度字节 (指针不会移动) 当没有更多的数据时会抛出异常
    void
    DataReader.peek(OutputStream outputStream, int maxLength)
    向 outputStream 写入指定长度字节 (指针不会移动) 当没有更多的数据时会抛出异常
    byte
    LinkedDataReader.peek()
     
    byte[]
    LinkedDataReader.peek(int maxLength)
     
    void
    LinkedDataReader.peek(OutputStream outputStream, int maxLength)
     
    byte
    ByteArrayDataReader.read()
     
    byte[]
    ByteArrayDataReader.read(int maxLength)
     
    void
    ByteArrayDataReader.read(OutputStream outputStream, int maxLength)
     
    byte
    DataReader.read()
    读取单个字节 (指针会移动) 当没有更多的数据时会抛出异常
    byte[]
    DataReader.read(int maxLength)
    读取字节 (指针会移动) 当没有更多的数据时会抛出异常
    void
    DataReader.read(OutputStream outputStream, int maxLength)
    向 outputStream 写入指定长度字节 (指针会移动) 当没有更多的数据时会抛出异常
    byte
    LinkedDataReader.read()
     
    byte[]
    LinkedDataReader.read(int maxLength)
     
    void
    LinkedDataReader.read(OutputStream outputStream, int maxLength)