Send BufferedImage over the network
I have already successfully setup a client/server connection. The issue, is when I send the BufferedImage over the network, it says:"Caused by: java.io.NotSerializableException: java.awt.image.BufferedImage"Can someone please tell me how to fix this?
[271 byte] By [
TaGmAna] at [2007-11-26 18:41:27]

# 1
Like the exception say, BufferedImage is not serializable. You cannot serialize it. The problem will go away if you don't try to serialize it. Of course, that doesn't answer the question you really meant to ask... which I'll leave for somebody else.