Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for relatively (1.58 sec)

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

                ci += NL_LENGTH;
            } 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];
    Java
    - Registered: Sun May 05 00:10:10 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

            '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'
        };
    
    
        /**
         * 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
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.5K bytes
    - Viewed (0)
Back to top