通过java流式传输桌面?
使用套接字连接,如何在没有第三方库的情况下将屏幕视图从一台计算机流式传输到另一台计算机?
Using socket connections, how can I stream the screen view from one computer to the other withou third-party libraries?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一个非常简单的解决方案是使用
Robot.createScreenCapture()
获取BufferedImage
,然后使用ImageIO
对其进行流式传输。A very simple solution would be to use
Robot.createScreenCapture()
to get aBufferedImage
, thenImageIO
to stream it.