Me and a group of friends are working on a project in Java, and we need some help regarding sending objects through sockets.
So far, we have achieved to send simple
If you want to use Objects Streams, you can wrap buffered image inside a class that implements Serializable and has a attribute that is a array of bytes (image data as byte array). You'll have to modify your code, changing BufferedImage references to SerializableImage(class name example)..
If you do that, your class will be serialized and transferred..