I have a java program that take snapshots of my screen at say 10 pics per second i want to send it to another computer in the same sequence i tried to send images by writng them one by one on the outputstream
OutputStream os=incoming.getOutputStream();
ImageIO.write(img,"jpg",os);
but i am able to recieve just 1 image i think only the first snapshot...................
pls help......