Here you can find the source of int2hex(int a, StringBuffer str)
public static void int2hex(int a, StringBuffer str)
//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*/ }