Here's an extract of my code:

OutputStream out = this.socket.getOutputStream();
out.write(fourBytes);
out.write(someBytes);
out.flush();

This gets sent in 2 packages, even though the first one is only 4 bytes long. Is there another way than concatenating the byte arrays together to send them together?

I've already tried setTcpNoDelay(false).

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

Sure. Use a BufferedOutputStream. :-P

The setTcpNoDelay changes how the OS sends packets, not how Java sends packets. The only way to change the latter is to buffer your output, as I suggested above.

BTW, this doesn't affect how many packets your data is really split up into. Again, that is up to the OS, as well as the window specified by the receiving end. So you can't use packets to delimit data.

link|improve this answer
1  
So obvious... thanks. – Georg Schölly May 24 '11 at 12:22
feedback

Wrap it with buffered output stream

link|improve this answer
feedback

I think disabling Nagle is done by setTcpNoDelay(true)

link|improve this answer
The OP wants to enable Nagle's algorithm, not disable it. :-) – Chris Jester-Young May 24 '11 at 12:15
@chris Nagle algorithm means to send less number of packets by binding multiple data in one packet. So I think he needs to disable Nagle – Suraj Chandran May 24 '11 at 12:17
Right, and the OP wants to join all the data into a single packet. – Chris Jester-Young May 24 '11 at 12:18
2  
Hence he must set setTcpNoDelay(true) :) – Suraj Chandran May 24 '11 at 12:24
feedback

Your Answer

 
or
required, but never shown

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