Java Integer to Hex int2hex(int a, StringBuffer str)

Here you can find the source of int2hex(int a, StringBuffer str)

Description

inthex

License

Apache License

Declaration

public static void int2hex(int a, StringBuffer str) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

public class Main {
    public static void int2hex(int a, StringBuffer str) {
        str.append(Integer.toHexString(a));
    }/* ww w.  j  av  a 2  s.c  om*/
}

Related

  1. convertIntToHex(int i)
  2. convertInttoHexa(int n)
  3. int2CharHex(int integer)
  4. int2hex(final int a, final StringBuffer str)
  5. int2hex(final int i)
  6. int2hex(int i)
  7. int2hex(int i)
  8. int2HexChar(int val)
  9. int2HexChars(final int data)