Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I convert a short (2 bytes) to a byte array in Java, e.g.

short x = 233;
byte[] ret = new byte[2];

...

it should be something like this. But not sure.

((0xFF << 8) & x) >> 0;

EDIT:

Also you can use:

java.nio.ByteOrder.nativeOrder();

To discover to get whether the native bit order is big or small. In addition the following code is taken from java.io.Bits which does:

  • byte (array/offset) to boolean
  • byte array to char
  • byte array to short
  • byte array to int
  • byte array to float
  • byte array to long
  • byte array to double

And visa versa.

share|improve this question

4 Answers

up vote 24 down vote accepted
ret[0] = (byte)(x & 0xff);
ret[1] = (byte)((x >> 8) & 0xff);
share|improve this answer
Ah thanks. I have posted a method too. – Hugh Feb 2 '10 at 23:58
16  
That's little endian, though. Network byte-order is big endian: 'byte[] arr=new byte[]{(byte)((x>>8)&0xFF),(byte)(x&0xFF)}; – Software Monkey Feb 3 '10 at 1:31
This could work too byte[] arr=new byte[]{(byte)(x>>>8),(byte)(x&0xFF)} – Javier Mar 27 '12 at 22:57

A cleaner, albeit far less efficient solution is:

ByteBuffer buffer = ByteBuffer.allocate(2);
buffer.putShort(value);
buffer.flip();
return buffer.array();

Keep this in mind when you have to do more complex byte transformations in the future. ByteBuffers are very powerful.

share|improve this answer

Figure it out its.

public static byte[] toBytes(short s) {
        return new byte[]{(byte)(s & 0x00FF),(byte)((s & 0xFF00)>>8)};
    }
share|improve this answer

It depends how you want to represent it:

  • big endian or little endian? That will determine which order you put the bytes in.

  • Do you want to use 2's complement or some other way of representing a negative number? You should use a scheme that has the same range as the short in java to have a 1-to-1 mapping.

For big endian, the transformation should be along the lines of: ret[0] = x/256; ret[1] = x%256;

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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