数値を別の基数に変換した後:
String thirteenAsBase36 = Long.toString(13, 36);
文字列を通常の 10 進数に戻すにはどうすればよいですか?
Long thirteenAsBase10 = ?
long parseLong(String s, int radix)
throws NumberFormatException
http://download.oracle.com/javase/6/docs/api/java/lang/Long.html
Long thirteenAsBase10;
try
{
thirteenAsBase10 = Long.parseLong(thirteenAsBase36, 36);
}
catch ( NumberFormatException e )
{
System.out.println("Oops");
}
あなたの最初の考えは常に: JavaDocs を読んでください。