Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for IOException (0.14 sec)

  1. src/main/java/jcifs/smb1/util/Encdec.java

                    if ((ch & 0xC0) != 0x80 ) {
                        throw new IOException( "Invalid UTF-8 sequence" );
                    } else {
                        uni[ui] |= (ch & 0x3F) << 6;
                        ch = src[si++] & 0xFF;
                        uni[ui] |=  ch & 0x3F;
                        if ((ch & 0xC0) != 0x80 || uni[ui] < 0x800) {
                            throw new IOException( "Invalid UTF-8 sequence" );
                        }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 10.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/util/Encdec.java

                    if ( ( ch & 0xC0 ) != 0x80 ) {
                        throw new IOException("Invalid UTF-8 sequence");
                    }
                    uni[ ui ] |= ( ch & 0x3F ) << 6;
                    ch = src[ si++ ] & 0xFF;
                    uni[ ui ] |= ch & 0x3F;
                    if ( ( ch & 0xC0 ) != 0x80 || uni[ ui ] < 0x800 ) {
                        throw new IOException("Invalid UTF-8 sequence");
                    }
                }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 11K bytes
    - Viewed (0)
Back to top