365連休
id:neet_rookie
【Self Stack Overflow】Javaで16進数文字列を正しく数値及び数値型へ変換する方法
自問 Javaで16進数文字列を正しい数値及び数値型へ変換する方法を教えてください。 以下のコードはエラーになります。 Integer.parseInt("ffffffff", 16); //throws NumberFormatException Short.parseShort("ffff", 16); //throws NumberFormatException Byte.parseByte("ff", 16); //throws NumberFormatException ベス…