JavaMobile
JavaMobile

Reputation: 409

How to use java to download a video into a file?

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.

Upvotes: 1

Views: 2208

Answers (1)

Yuval Rimar
Yuval Rimar

Reputation: 1055

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...

Upvotes: 1

Related Questions