Here you can find the source of convertHexStringToInt(String hex)
Parameter | Description |
---|---|
hex | 31 30 |
public static int convertHexStringToInt(String hex)
//package com.java2s; public class Main { /**/*from w w w .ja va 2 s .com*/ * * @param hex * 31 30 * @return 16 */ public static int convertHexStringToInt(String hex) { return Integer.valueOf(hex, 16); } }