vote up 0 vote down star
1

Hi i'm reading 133 length packet from serialport,last 2 bytes contain CRC values,2 bytes value i've make single(short i think) using java. this what i have done,

short high=(-48 & 0x00ff);
short low=80;

short c=(short) ((high<<8)+low);

but i'm not getting correct result,is it problem because signed valued? how can i solve this problem,plz help me i'm in trouble

flag
Is there a particular reason you use short instead of int? Isn't your CRC value unsigned? – kd304 Jul 8 at 13:31

5 Answers

vote up -1 vote down

EDIT: If your variable is a byte, you can't shift by 8. Do:

(high << 7 << 1) + low;

EDIT: If you don't want the sign extend. Do:

int high = (-48 & 0x00ff);
int c = (high << 8) + low;

signed -12208 = unsigned 53328, same bits: 1101 0000 0101 0000 So go to the data type that is larger so the sign won't extend.

link|flag
ya i have done but then also i'm not getting correct result – Nilesh Apr 10 at 5:56
result is -12208 – Nilesh Apr 10 at 5:57
i want 53328 as a result – Nilesh Apr 10 at 5:58
i've done (high << 7 << 1) + low; still same result – Nilesh Apr 10 at 6:01
yes i got the answer thank u very much – Nilesh Apr 10 at 6:04
show 1 more comment
vote up 8 vote down

Remember, you don't have to tie yourself in knots with bit shifting if you're not too familiar with the details. You can use a ByteBuffer to help you out:

ByteBuffer bb = ByteBuffer.allocate(2);
bb.order(ByteOrder.LITTLE_ENDIAN);
bb.put(firstByte);
bb.put(secondByte);
short shortVal = bb.getShort(0);

And vice versa, you can put a short, then pull out bytes.

By the way, bitwise operations automatically promote the operands to at least the width of an int. There's really no notion of "not being allowed to shift a byte more than 7 bits" and other rumours that seem to be going round.

link|flag
you're right, it does promote to int so shift by 7 is ok. But << 32 is undefined so it does nothing. – CookieOfFortune Apr 10 at 6:07
vote up 0 vote down

When converting byte values from a stream into numeric values in Java you have to be very careful with sign extension. There is a trap with negative numbers (values from (unsigned) 128-255).

Try this (it works if hi and lo are any Java integer type) :

short val=(short)( ((hi&0xFF)<<8) | (lo&0xFF) );

I find it's best to be explicit with the parentheses in these cases.

link|flag
You don't need the casts to int, that happens implicitly for the & operations. – starblue Apr 10 at 13:32
vote up 0 vote down

Hi

I am new to java programming. Does anyone know how can I assign 2 bytes to variable.

for example byte val = 2; // this is one byte with 0000 0010 but i need to assign 2 bytes to val....(val is 2 bytes long)..

Any sort of help is appreciated. Thanks in advance.

Kam

link|flag
We would be glad to help, but please look at your own question and clarify it a bit. – kd304 Jul 8 at 14:27
vote up 1 vote down

The other answers are OK, but I would like to put an emphasis on the type:

short high=(-48 & 0x00ff);
short low=80;

int c= ((high & 0xFF) << 8) | (low & 0xFF);

The short type can represent values between -32768 to 32767. 53328 cannot be nicely stored in short, use int instead as it allows you to store unsigned value up to ~109 So don't downcast the expression to short as it will net you the signed value.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.