java从接口直接下载文件到本地

最近有个需求,要求从接口获取(下载)word文件到本地,然后,把word文件转换成PDF格式。先说一下从接口获取文件到本地。

接口是这个样子的,浏览器请求接口直接就下载文件了:如图
在这里插入图片描述
现在不要从浏览器下载,而是通过java代码下载。因为我要进行批量下载大概有2000个word文档。

代码如下:

import java.io.*;
import java.net.HttpURLConnection;
import java.net.URL;

public class GetFrom {
    public static void main(String[] args) throws Exception {
        String photoUrl = "下载地址";
        String fileName = "申请书";
        String filePath = "d:/自助取表/";
        saveUrlAs(photoUrl, filePath,fileName,"GET");
        System.out.println("下载完成!");
    }

    /**
     * @功能 下载材料接口
     * @param filePath 文件将要保存的目录
     * @param method 请求方法,包括POST和GET
     * @param url 请求的路径
     * @return
     */

    public static void saveUrlAs(String url,String filePath,String fileName,String method){
        FileOutputStream fileOut = null;
        HttpURLConnection conn = null;
        InputStream inputStream = null;
        //创建不同的文件夹目录
        File file=new File(filePath);
        //判断文件夹是否存在
        if (!file.exists())
        {
            //如果文件夹不存在,则创建新的的文件夹
            file.mkdirs();
        }

        try
        {
            // 建立链接
            URL httpUrl=new URL(url);
            conn=(HttpURLConnection) httpUrl.openConnection();
            //以Post方式提交表单,默认get方式
            conn.setRequestMethod(method);
            conn.setDoInput(true);
            conn.setDoOutput(true);
            // post方式不能使用缓存
            conn.setUseCaches(false);
            //连接指定的资源
            conn.connect();
            //获取网络输入流
            inputStream=conn.getInputStream();
            BufferedInputStream bis = new BufferedInputStream(inputStream);
            //判断文件的保存路径后面是否以/结尾
            if (!filePath.endsWith("/")) {
                filePath += "/";
            }
            //写入到文件(注意文件保存路径的后面一定要加上文件的名称)
            fileOut = new FileOutputStream(filePath+fileName+".doc");
            BufferedOutputStream bos = new BufferedOutputStream(fileOut);

            byte[] buf = new byte[4096];
            int length = bis.read(buf);
            //保存文件
            while(length != -1)
            {
                bos.write(buf, 0, length);
                length = bis.read(buf);
            }
            bos.close();
            bis.close();
            conn.disconnect();
        } catch (Exception e)
        {
            e.printStackTrace();
            System.out.println("抛出异常!!");
        }
    }
}

猜你喜欢

转载自blog.csdn.net/qq_41033385/article/details/106320386
今日推荐