Desktop Screen Streaming in Java
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 g开发者_运维知识库ood. Too slow! I think to redirect the video stream would be better.
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.
精彩评论