Here you can find the source of toHexChar(int i)
Parameter | Description |
---|---|
i | integer |
public static char toHexChar(int i)
//package com.java2s; //License from project: Open Source License public class Main { /**/*from w w w . j a v a 2s . c o m*/ * convert a integer into a hexadecimal character * * @param i integer * @return hex char */ public static char toHexChar(int i) { if ((0 <= i) && (i <= 9)) { return (char) ('0' + i); } else { return (char) ('a' + (i - 10)); } } }