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

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.

share|improve this question
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 '09 at 6:29

3 Answers

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.

share|improve this answer
Obviously the way it was meant to be done. – abyx Sep 17 '09 at 6:26
Only if there's also java of the other end. – Denis Tulskiy Sep 17 '09 at 17:28
@DenisTulskiy - the other end could be any language. the DataOutputStream writes almost entirely language agnostic output (except the utf8 strings). – jtahlborn Mar 29 '12 at 2:10

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);
share|improve this answer

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.

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.