如何使用Servlet或JSP播放视频?

发布于 2024-10-08 21:45:31 字数 27 浏览 1 评论 0原文

如何使用Servlet或JSP播放视频?

How to play video using Servlet or JSP?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

摇划花蜜的午后 2024-10-15 21:45:31

在 JSP 中,这与在普通 HTML 中所做的没有什么不同。只需使用 和/或 元素来指向视频文件所在的 URL。有关如何使用的详细信息,您需要查阅视频格式供应商的文档。由于您没有提及视频文件的格式,因此我们无法为您提供更详细的帮助。所以这里只是一个例子:如果是 Quicktime .mov 文件,您可以在 苹果

仅当您尚未将视频文件存储在公共 Web 内容中时,servlet 才有用。但尽管如此,这并没有什么特别的,需要由 servlet 来完成。只需从文件源(固定磁盘上的其他位置或数据库等)读取InputStream,并沿着一组正确的响应标头写入响应的OutputStream

In JSP, it's not different from as you would do in normal HTML. Just use the <embed> and/or the <object> element which points to an URL where the video file is located. You need to consult the documentation of the video format vendor for details how to use it. Since you didn't mention what format the video file is in, we can't help you further in detail. So here's just one example: in case of Quicktime .mov files, you can consult it at Apple.

A servlet is only useful if you haven't stored the video file in public webcontent. But still then, it's nothing special which needs to be done by the servlet. Just read InputStream from the file source (somewhere else on fixed disk, or in a database, etc) and write to OutputStream of the response along a correct set of response headers.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文