I\'ve seen lots of examples of sending serialized data over sockets in Java, but all I want is to send some simple integers and a string. And, the problem is I\'m trying to
You can use the simple OutputStream given by the Socket. From there you can write bytes.
If you want you can also encapsulate this stream in a BufferedOutputStream to have a buffer.