Here you can find the source of toHexString(final int i)
static String toHexString(final int i)
//package com.java2s; public class Main { static String toHexString(final int i) { return "0x" + Integer.toHexString(i); }//from w ww. ja v a 2 s . c o m static String toHexString(final long i) { return "0x" + Long.toHexString(i); } }