如何使用java将视频下载到文件中?
我有一个java程序通过HTTP下载视频文件。但它只能下载该网页而不是视频。我不知道视频文件地址。我怎样才能得到它?
提前致谢。
I have a java program to download a video file via HTTP. But it just can download that webpage instead of video. I do not know the video file address. How could I get it?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须知道视频网址才能下载。你可以尝试解析html文件来找到它,但你需要知道你要找的是什么,是
标签还是
You have to know the video url to download it. You can try to parse the html file to find it, but you need to know what you are looking for, is it
<video>
tag or<object>
tag with flv file...