Reputation: 169
Using socket connections, how can I stream the screen view from one computer to the other withou third-party libraries?
Upvotes: 2
Views: 1291
Reputation: 16364
A very simple solution would be to use Robot.createScreenCapture()
to get a BufferedImage
, then ImageIO
to stream it.
Upvotes: 2