java视频下载

方法一

package com.amigo.online.provider.manager.util.video.download;

import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLConnection;

public class VideoDownload {
	public static boolean httpDownload(String httpUrl, String saveFile) {
        // 1.下载网络文件
        int byteRead;
        URL url;
        try {
            url = new URL(httpUrl);
        } catch (MalformedURLException e1) {
            e1.printStackTrace();
            return false;
        }

        try {
            //2.获取链接
            URLConnection conn = url.openConnection();
            //3.输入流
            InputStream inStream = conn.getInputStream();
            //3.写入文件
            FileOutputStream fs = new FileOutputStream(saveFile);

            byte[] buffer = new byte[1024];
            while ((byteRead = inStream.read(buffer)) != -1) {
                fs.write(buffer, 0, byteRead);
            }
            inStream.close();
            fs.close();
            return true;
        } catch (FileNotFoundException e) {
            e.printStackTrace();
            return false;
        } catch (IOException e) {
            e.printStackTrace();
            return false;
        }
    }
	
	
	public static void main(String[] args) {
		System.out.println(httpDownload("http://yun.it7090.com/video/XHLaunchAd/video01.mp4","D:\\image\\22.mp4"));
	}
}

方法二

package com.amigo.online.provider.manager.util.video.download;

import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.HttpURLConnection;
import java.net.URL;

import org.jboss.logging.Logger;


public class VideoDownloadUtil {
	private static final Logger LOGGER = Logger.getLogger(VideoDownloadUtil.class);
	/**
     * 下载文件到本地
     *
     * @param urlString
     *          被下载的文件地址
     * @param filename
     *          本地文件名
     * @param timeout
     *          超时时间毫秒
     * @throws Exception
     *           各种异常
     */
   
	 @SuppressWarnings("finally")
	public static boolean download(String urlString, String filename,int timeout){
	        boolean ret = false;
	        File file = new File(filename);
	        try {
	            if(file.exists()){
	                ret = true;
	            }else{
	                // 构造URL
	                URL url = new URL(urlString);
	                // 打开连接
	                HttpURLConnection con = (HttpURLConnection )url.openConnection();
	                con.setConnectTimeout(timeout);
	                con.setReadTimeout(timeout);
	                con.connect();
	                int contentLength = con.getContentLength();
	                // 输入流
	                InputStream is = con.getInputStream();
	                // 1K的数据缓冲
	                byte[] bs = new byte[1024];
	                // 读取到的数据长度
	                int len;
	                // 输出的文件流

	                File file2=new File(file.getParent());
	                file2.mkdirs();
	                if(file.isDirectory()){

	                }else{
	                    file.createNewFile();//创建文件
	                }
	                OutputStream os = new FileOutputStream(file);
	                // 开始读取
	                while ((len = is.read(bs)) != -1) {
	                    os.write(bs, 0, len);
	                }
	                // 完毕,关闭所有链接
	                os.close();
	                is.close();
	                if(contentLength != file.length()){
	                    file.delete();
	                    ret = false;
	                }else{
	                    ret = true;
	                }
	            }
	        } catch (IOException e) {
	            file.delete();
	            ret = false;
	            LOGGER.error("[VideoUtil:download]:\n" + " VIDEO URL:" + urlString + " \n NEW FILENAME:" + filename + " DOWNLOAD FAILED!! ");
	        }finally {
	            return ret;
	        }
	    }
    
   
    

    public static void main(String[] args) {
    	System.out.println(download("http://yun.it7090.com/video/XHLaunchAd/video01.mp4","D:\\image\\969.mp4",1000000000));
	}
    
    
    
}

 

  • 0
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 5
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 5
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值