views:

145

answers:

1

Can anyone tell me how to stream my desktop through sockets in Java? I tried using screen captures and sending them 1 at a time but it's no good. Too slow! I think to redirect the video stream would be better.

A: 

What is the reason you want to do this in the first place? There are plenty of solutions for this already built, such as TightVNC (which also includes a java-client if that's what you want).

If you really want to do the exercise yourself, the major concern should probably be to detect and only send updated areas of the screen and to properly compress the data being sent.

aioobe