web-dev-qa-db-ja.com

In Java 10進数を36進数に変換するにはどうすればよいですか?

10進数がある場合、Javaでそれを基数36に変換するにはどうすればよいですか?

43
slavoj

番号iが与えられたら、Integer.toString(i, 36)を使用します。

75

Integer.toStringのドキュメントを参照してください

http://docs.Oracle.com/javase/7/docs/api/Java/lang/Integer.html#toString(int、%20int)

toString

public static String toString(int i, int radix)
....
The following ASCII characters are used as digits:

   0123456789abcdefghijklmnopqrstuvwxyz

radixとは何ですか?あなたはベース36で幸運です(そしてそれは理にかなっています)
http://docs.Oracle.com/javase/7/docs/api/Java/lang/Character.html#MAX_RADIX

public static final int     MAX_RADIX   36
16
RichardTheKiwi

以下は、36だけでなく、任意のベースで機能します。codeのStringの内容を単純に置き換えます。

エンコード:

int num = 586403532;
String code = "0123456789abcdefghijklmnopqrstuvwxyz";
String text = "";
j = (int)Math.ceil(Math.log(num)/Math.log(code.length()));
for(int i = 0; i < j; i++){
    //i goes to log base code.length() of num (using change of base formula)
    text += code.charAt(num%code.length());
    num /= code.length();
}

デコード:

String text = "0vn4p9";
String code = "0123456789abcdefghijklmnopqrstuvwxyz";
int num = 0;
j = text.length
for(int i = 0; i < j; i++){
    num += code.indexOf(text.charAt(0))*Math.pow(code.length(), i);
    text = text.substring(1);
}
14
hcps-tenembasj

最初に、番号をJava(これは2ベースであるが、これは実際には重要ではない))の内部数値形式に変換する必要があります。たとえば、Integer.parseInt()(数値が2 ^ 31未満の整数の場合)intから目的の出力形式に変換できます。メソッドInteger.toString(i, 36)は、0123456789abcdefghijklmnopqrstuvwxyzを数字として使用してこれを行います(10進数字0-9およびアルファベット順の小文字の英字)。他の数字が必要な場合は、「数字」(たとえば、toUpperCase)を置き換えることで結果を変換するか、または自分で変換-それは魔法ではなく、剰余36を法とし、36で除算するループです(正しい数字のルックアップで)。

数値がintが提供するものよりも長い場合は、代わりにlongLongを使用)またはBigIntegerを使用すると、同様の基数コンバーターが使用できます。

あなたの番号に「ポイントの後の数字」がある場合、ほとんどの(有限の)ベースX番号は(有限の)ベースY番号として正確に表現できないため、Yは(累乗)Yではないため、もう少し難しいですXの倍数。

9
Paŭlo Ebermann

このコードは機能します:

public class Convert {

    public static void main(String[] args) {
        int num= 2147483647;
        String text="ABCD1";


        System.out.println("num: " + num + "=>" + base10ToBase36(num));
        System.out.println("text: " +text + "=>" + base36ToBase10(text));
    }

    private static String codeBase36 = "0123456789abcdefghijklmnopqrstuvwxyz";

    //"0123456789 abcdefghij klmnopqrst uvwxyz"
    //"0123456789 0123456789 0123456789 012345"


    private static String max36=base10ToBase36(Integer.MAX_VALUE); 

    public static String base10ToBase36(int inNum) {
        if(inNum<0) {
            throw new NumberFormatException("Value  "+inNum +"  to small");
        }
        int num = inNum;
        String text = "";
        int j = (int)Math.ceil(Math.log(num)/Math.log(codeBase36.length()));
        for(int i = 0; i < j; i++){
            text = codeBase36.charAt(num%codeBase36.length())+text;
            num /= codeBase36.length();
        }
        return text;
    }
    public  static int base36ToBase10(String in) {
        String text = in.toLowerCase();
        if(text.compareToIgnoreCase(max36)>0) {
            throw new NumberFormatException("Value  "+text+"  to big");
        }

        if(!text.replaceAll("(\\W)","").equalsIgnoreCase(text)){
            throw new NumberFormatException("Value "+text+" false format");
        }
        int num=0;
        int j = text.length();
        for(int i = 0; i < j; i++){
            num += codeBase36.indexOf(text.charAt(text.length()-1))*Math.pow(codeBase36.length(), i);
            text = text.substring(0,text.length()-1);
        }
        return num;
    }


}
1
frank

たとえばInteger.toString(Num、base)を使用したくない場合、64ビット長の変数が必要な私の場合、次のコードを使用できます。Javaのリストを使用この変換を容易にします

long toBeConverted=10000; // example, Initialized by 10000
List<Character> charArray = new ArrayList<Character>();
List<Character> charArrayFinal = new ArrayList<Character>();
int length=10; //Length of the output string
long base = 36;

            while(toBeConverted!=0)
            {
                long rem = toBeConverted%base;
                long quotient = toBeConverted/base;
                if(rem<10)
                    rem+=48;
                else
                    rem+=55;
                charArray.add((char)rem);
                toBeConverted=quotient;
            }
            // make the array in the reverse order
            for(int i=length-1;i>=0;--i){
                if(i>=charArray.size()){
                    charArrayFinal.add((char) 48); // sends 0 to fix the length of the output List
                } else {
                    charArrayFinal.add(charArray.get(i));
                }

            }

例:

(278197)36= 5YNP

1
Davood Falahati

これは役立つ場合があります。1679615未満の4桁の英数字文字列と10進数で実行される操作。必要に応じてコードを変更できます。

char[] alpaNum = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ".toCharArray();
     String currentSeries = "";
    int num = 481261;
        String result = "";
        String baseConversionStr = "";
        boolean flag = true;
        do 
        {
            baseConversionStr = Integer.toString(num % 36) + baseConversionStr;
            String position = "";
            if(flag)
            {
                flag = false;
                position = baseConversionStr;
            }
            else
            {
                position = Integer.toString(num % 36);
            }
            result += alpaNum[new Integer(position)];    
            num = num/36;
   }
        while (num > 0);

        StringBuffer articleNo = new StringBuffer(result).reverse();

        String finalString = "";

        if(articleNo.length()==1)
        {
            finalString = "000"+articleNo;
        }
        else if(articleNo.length()==2)
        {
            finalString = "00"+articleNo;
        }
        else if(articleNo.length()==3)
        {
            finalString = "0"+articleNo;
        }

        currentSeries = finalString;
0
Omkar More

JavaScriptの this websiteからこのコードを取得しました。これはJavaの私のバージョンです。

public static String customBase (int N, String base) {

    int radix = base.length();

    String returns = "";

    int Q = (int) Math.floor(Math.abs(N));
    int R = 0;

    while (Q != 0) {

        R = Q % radix;
        returns = base.charAt(R) + returns;
        Q /= radix; 

    }

    if(N == 0) {
        return String.valueOf(base.toCharArray()[0]);
    }

    return  N < 0 ? "-" + returns : returns;

}

これは、負の数とカスタムベースをサポートします。

10進アドオン:

public static String customBase (double N, String base) {

    String num = (String.valueOf(N));
    String[] split = num.split("\\.");
    if(split[0] == "" || split[1] == "") {
        return "";
    }
    return customBase(Integer.parseInt(split[0]), base)+ "." + customBase(Integer.parseInt(split[1]), base);

}
0
nathanfranke

次に、ベース10を任意のベースに変換する方法を示します。

 public char[]  base10Converter(int number, int finalBase) {
    int quo;
    int rem;
    char[] res = new char[1];

    do {
        rem = number % finalBase;
        quo = number / finalBase;
        res = Arrays.copyOf(res, res.length + 1);
        if (rem < 10) {
            //Converting ints using ASCII values
            rem += 48;
            res[res.length - 1] = (char) rem;
        } else {
            //Convert int > 9 to A, B, C..
            rem += 55;
            res[res.length - 1] = (char) rem;
        }
        number /= finalBase;
    } while (quo != 0);


    //Reverse array
    char[] temp = new char[res.length];
    for (int i = res.length - 1, j = 0; i > 0; i--) {
        temp[j++] = res[i];
    }

    return temp;
 }
0
Nishant Jain

私はパーティーに遅れているかもしれませんが、これはインデックスでCalc/Excelのセル名を取得するために使用していたソリューションです:

public static void main(final String[] args) {
    final String base = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";

    System.out.println(toCustomBase(0, base));
    System.out.println(toCustomBase(2, base));
    System.out.println(toCustomBase(25, base));
    System.out.println(toCustomBase(26, base));
    System.out.println(toCustomBase(51, base));
    System.out.println(toCustomBase(52, base));
    System.out.println(toCustomBase(520, base));
}

public static String toCustomBase(final int num, final String base) {
    final int baseSize = base.length();
    if(num < baseSize) {
        return String.valueOf(base.charAt(num));
    }
    else {
        return toCustomBase(num / baseSize - 1, base) + base.charAt(num % baseSize);
    }
}

結果:

A
C
Z
AA
AZ
BA
TA

基本的に、このソリューションは任意のカスタム基数を受け入れます。アイデアは here から指揮されました。

0
akaine