In java card only small data types are used (byte and short). I am trying to convert byte to short such that i can use it for checking condition,etc. When byte is converted into short using type cast in java card it gives me some other negative number. Please tell me how to convert (11111111) that is ff store in single byte to short.
I am using:
Isn't the Java Card language simply the same as Java? Then you can write
shortvar = bytevar&0xFF;