Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for EOF (0.14 sec)

  1. android/guava/src/com/google/common/io/LittleEndianDataInputStream.java

        return readUnsignedByte() != 0;
      }
    
      /**
       * Reads a byte from the input stream checking that the end of file (EOF) has not been
       * encountered.
       *
       * @return byte read from input
       * @throws IOException if an error is encountered while reading
       * @throws EOFException if the end of file (EOF) is encountered.
       */
      private byte readAndCheckByte() throws IOException, EOFException {
        int b1 = in.read();
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed May 17 14:35:11 GMT 2023
    - 7.3K bytes
    - Viewed (0)
Back to top