1

数値を別の基数に変換した後:

String thirteenAsBase36 = Long.toString(13, 36);

文字列を通常の 10 進数に戻すにはどうすればよいですか?

Long thirteenAsBase10 = ?
4

1 に答える 1

7
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 を読んでください

于 2011-09-20T23:59:56.650 に答える