Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/main/java/jcifs/smb/SmbRandomAccessFile.java

            }
    
            if ( ( c == -1 ) && ( input.length() == 0 ) ) {
                return null;
            }
    
            return input.toString();
        }
    
    
        @Override
        public final String readUTF () throws SmbException {
            int size = readUnsignedShort();
            byte[] b = new byte[size];
            read(b, 0, size);
            try {
                return Encdec.dec_utf8(b, 0, size);
            }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed Jan 08 12:01:33 GMT 2020
    - 18.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbRandomAccessFile.java

                }
            }
    
            if ((c == -1) && (input.length() == 0)) {
                return null;
            }
    
            return input.toString();
        }
    
        public final String readUTF() throws SmbException {
            int size = readUnsignedShort();
            byte[] b = new byte[size];
            read( b, 0, size );
            try {
                return Encdec.dec_utf8( b, 0, size );
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 10.9K bytes
    - Viewed (0)
Back to top