をintに進文字列を変換するとき、私は小数に進文字列に変換したいのですが、私は次のコードでエラーました:java.lang.NumberFormatException
String hexValue = "23e90b831b74";
int i = Integer.parseInt(hexValue, 16);
エラー:
Exception in thread "main" java.lang.NumberFormatException: For input string: "23e90b831b74"
at java.lang.NumberFormatException.forInputString(NumberFormatException.java:65)
at java.lang.Integer.parseInt(Integer.java:495)
を