Lucas Kuhlemann
Lucas Kuhlemann

Reputation: 169

Streaming the desktop through java?

Using socket connections, how can I stream the screen view from one computer to the other withou third-party libraries?

Upvotes: 2

Views: 1291

Answers (1)

Russell Zahniser
Russell Zahniser

Reputation: 16364

A very simple solution would be to use Robot.createScreenCapture() to get a BufferedImage, then ImageIO to stream it.

Upvotes: 2

Related Questions