Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Java 卡中,仅使用小数据类型(字节和短)。我正在尝试将字节转换为短字节,以便我可以使用它来检查条件等。当使用 java 卡中的类型转换将字节转换为 short 时,它会给我一些其他负数。请告诉我如何将 ff 存储在单字节中的 (11111111) 转换为short。
我在用:
Java Card 语言不就和 Java 一样吗?然后你可以写
shortvar = bytevar&0xFF;
您可以使用 javacard.framework.Util.makeShort(byte b1, byte b2) 方法。
我知道你已经有了答案,但据我所知,好的方法是使用 javacard.framework.Util makeShort 方法,当你给出 2 个字节并且它会返回短时。