Преобразовать 12-символьный в длинный - PullRequest
0 голосов
/ 07 января 2020

Авторизованная сумма сделки. Формат "n 12" и длина 6 байтов, например, значение 1234567 сохраняется как шестнадцатеричное 00 00 01 23 45 67 .

TLV > 9F02 06 000001234567

Q : Как преобразовать 000001234567 в 1234567 ?

Я пытался следующим образом, но это не работает:

public static long byteArrayToLong(@NonNull byte[] from, int offset, @NonNull EEndian endian) {
    try {
        byte[] fromFixed = new byte[8];
        if(from.length < 8) {
            System.arraycopy(from, 0, fromFixed, fromFixed.length-from.length, from.length);
        }
        else  {
            System.arraycopy(from, 0, fromFixed, 0, fromFixed.length);
        }
        if (endian == EEndian.BIG_ENDIAN) {
            return ((fromFixed[offset] << 24) & 0xff00000000000000L) | ((fromFixed[offset + 1] << 16) & 0xff000000000000L)
                    | ((fromFixed[offset + 2] << 8) & 0xff0000000000L) | ((fromFixed[offset + 3]) & 0xff00000000L)
                    | ((fromFixed[offset + 4] << 24) & 0xff000000) | ((fromFixed[offset + 5] << 16) & 0xff0000)
                    | ((fromFixed[offset + 6] << 8) & 0xff00) | (fromFixed[offset + 7] & 0xff);
        } else {
            return ((fromFixed[offset + 7] << 24) & 0xff00000000000000L) | ((fromFixed[offset + 6] << 16) & 0xff000000000000L)
                    | ((fromFixed[offset + 5] << 8) & 0xff0000000000L) | ((fromFixed[offset + 4]) & 0xff00000000L)
                    | ((fromFixed[offset + 3] << 24) & 0xff000000) | ((fromFixed[offset + 2] << 16) & 0xff0000)
                    | ((fromFixed[offset + 1] << 8) & 0xff00) | (fromFixed[offset] & 0xff);
        }
    } catch (Exception ex) {
        ex.printStackTrace();
    }
    return -1;
}

// звоним по вышеуказанному коду

byte[] amountAuthorisedNumeric = transLogResponse.getAmountAuthorisedNumeric(i); // new byte[] {(byte)00x00, (byte)0x00, (byte)0x01, (byte)0x23, (byte)0x45, (byte)0x67}
Log.i(TAG, "AMOUNT1 is " + byteArrayToHexString(amountAuthorisedNumeric));       // 000001234567

amount = byteArrayToLong(amountAuthorisedNumeric, 0, BIG_ENDIAN); // error in here
Log.i(TAG, "AMOUNT2 is " + amount);                               // 19088743 (result expected is 1234567, not 19088743)

1 Ответ

2 голосов
/ 07 января 2020

Я предлагаю использовать BigInteger.

import java.math.BigInteger;

/**
 *
 * @author Sedrick
 */
public class Main
{

    public static void main(String[] args)
    {
        String value = "000001234567";
        BigInteger bigInteger = new BigInteger(value);
        System.out.println(bigInteger.longValue());
    }

}

Вывод:

--- exec-maven-plugin:1.5.0:exec (default-cli) @ JavaTestingGround ---
1234567
------------------------------------------------------------------------
BUILD SUCCESS

Другой маршрут использует Long для анализа значения.

/**
 *
 * @author Sedrick
 */
public class Main
{

    public static void main(String[] args)
    {
        String value = "000001234567";

        System.out.println(Long.parseLong(value));
    }

}

Выход:

1234567
------------------------------------------------------------------------
BUILD SUCCESS
...