Here you can find the source of intToHexString(int _i)
Parameter | Description |
---|---|
_i | a parameter |
public static String intToHexString(int _i)
//package com.java2s; //License from project: Open Source License public class Main { /**// www . j a v a 2 s. c o m * Wandelt einen Integer in einen Hex-String um * * @param _i * @return */ public static String intToHexString(int _i) { return Integer.toHexString(_i).toUpperCase(); } }