vote up 1 vote down star

What is the best possible way to send an int through a socket in Java? Right now I'm looking at

sockout.write((byte)( length >> 24 ));
sockout.write((byte)( (length << 8) >> 24 ));
sockout.write((byte)( (length << 16) >> 24 ));
sockout.write((byte)( (length << 24) >> 24 ));

and then trying to rebuild the int from bytes on the other side, but it doesn't seem to work. Any ideas?

Thanks.

flag
In general, your way should work too, but Adam's answer is better IMO. Though, the regular way of doing this is ((length >> i) & (byte) 0xff) where i is one of (0, 8, 16, 24) which protects you from problems in case the original value of the integer is negative. – abyx Sep 17 at 6:29

3 Answers

vote up 8 vote down

Wrap your OutputStream with a DataOutputStream and then just use the writeInt() method.

Something else which may be useful is that on the other end you can wrap our InputStream in a DataInputStream and use readInt() to read an int back out.

Both classes also contain a number of other useful methods for reading and writing other raw types.

link|flag
Obviously the way it was meant to be done. – abyx Sep 17 at 6:26
Only if there's also java of the other end. – Piligrim Sep 17 at 17:28
vote up 2 vote down

There are other type of streams you can use, which can directly send integers. You can use DataOutputStream. Observe,

DataOutputStream out;
try {
    //create write stream to send information
    out=new DataOutputStream(sock.getOutputStream());
} catch (IOException e) { 
    //Bail out
}

out.writeInt(5);
link|flag
vote up 0 vote down

If you are sending small amounts of data, then encoding as character data (e.g. Integer.toString(length)) and decoding at the other end is not unreasonable.

link|flag

Your Answer

Get an OpenID
or

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