从Apdu Response获取价值

时间:2016-10-21 07:35:10

标签: android nfc apdu

我将长度值存储在符合以下条件的缓冲区中:

Short len=(short)128;
buffer[1]=(byte)len

在调试模式下我在缓冲区中看到这个值: enter image description here

在Android应用程序中的

我在此代码中得到apdu响应

byte[] result=isodep.transceive(....)//... is Apdu command

并获得结果1。 它是-128但我想要128。 我该怎么办?

1 个答案:

答案 0 :(得分:0)

我写了int i = result [1]& 0xFF,它回答。