HttpServer 与 Servlet - 采用哪种方法来显示更新的 BufferedImage

发布于 2025-01-03 18:54:25 字数 967 浏览 0 评论 0原文

我有一个 Java 应用程序,并且想向 Web 客户端提供 BufferedImage(每秒更新几次)。

我首先研究了 HttpServer(JDK 6 的一部分)。我已经实现了一个 HttpHandler,并在句柄(HttpExchange 交换)调用中获取最新的 BufferedImage 并使用交换引用将其发送出去。

我可以使用我的网络浏览器查看通过交换发送的图像,当我刷新浏览器时,我可以观察图像更新(因为我的应用程序正在更新 BufferedImage)。

对于下一步,我想不断更新浏览器中的图像(而不需要手动刷新网页)。看起来带有关联 HttpHandler 的 HttpServer 并没有真正设置为执行此操作(只是一次性请求/响应)。我已经开始阅读有关 Servlet 的内容,并正在考虑使用 Jetty。

我想知道我在研究 Servlet 方面是否走在正确的轨道上,或者是否有办法将 BufferedImage 更新“驱动”到已连接到我的 HttpServer 的 Web 客户端?

提前致谢。

我的处理方法的代码片段:

public void handle(HttpExchange exch) throws IOException {
    BufferedImage image = fImageProvider.getLatestImage();
    ByteArrayOutputStream output = new ByteArrayOutputStream(SIZE);
    ImageIO.write(image, IMAGE_CODEC, output);
    byte[] byteArray = output.toByteArray();

    exch.sendResponseHeaders(HttpURLConnection.HTTP_OK, byteArray.length);
    exch.getResponseBody().write(byteArray);
    exch.close
}

I have a Java application, and would like to serve out a BufferedImage (that is updated a few times a second) to a web client.

I've started by looking at HttpServer (part of JDK 6). I've implemented an HttpHandler, and on the handle(HttpExchange exchange) call I grab the latest BufferedImage and send it out using the exchange reference.

I can use my web browser to view the image sent via exchange, and as I refresh the browser I can observe the image updating (since my application is updating the BufferedImage).

For the next step, I would like to continuously update the image in the browser (without needing to manually refresh the web page). It seems that HttpServer with an associated HttpHandler is not really set up to do this (just a one time request/response). I've started to read about Servlets and am looking into using Jetty.

I'd like to know if I'm on the right track with looking into Servlets, or is there a way to "drive" BufferedImage updates to a web client that has connected to my HttpServer?

Thanks in advance.

Code snippet blow for my handle method:

public void handle(HttpExchange exch) throws IOException {
    BufferedImage image = fImageProvider.getLatestImage();
    ByteArrayOutputStream output = new ByteArrayOutputStream(SIZE);
    ImageIO.write(image, IMAGE_CODEC, output);
    byte[] byteArray = output.toByteArray();

    exch.sendResponseHeaders(HttpURLConnection.HTTP_OK, byteArray.length);
    exch.getResponseBody().write(byteArray);
    exch.close
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文