Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

            } while( si < length );
    
            ps.println( c );
        }
    
    /** 
     * This is an alternative to the <code>java.lang.Integer.toHexString</cod>
     * method. It is an efficient relative that also will pad the left side so
     * that the result is <code>size</code> digits.
     */ 
        public static String toHexString( int val, int size ) {
            char[] c = new char[size];
            toHexChars( val, c, 0, size );
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 5.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/util/Hexdump.java

        };
    
    
        /**
         * This is an alternative to the <code>java.lang.Integer.toHexString</code>
         * method. It is an efficient relative that also will pad the left side so
         * that the result is <code>size</code> digits.
         * 
         * @param val
         * @param size
         * @return hex string
         */
        public static String toHexString ( int val, int size ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.5K bytes
    - Viewed (0)
Back to top