HttpURLConnection上传下载

客户端上传/下载代码

package com.cqs.qicaiyun.system.net;

import lombok.extern.log4j.Log4j2;
import org.apache.commons.lang3.StringUtils;

import java.io.*;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLEncoder;
import java.util.Map;

/**
 * 客户端实现文件上传 下载
 * <p>
 * create date: 18-7-21 10:43
 */
@Log4j2
public class UploadClient {
    private final static String BOUNDARY_PREFIX = "--";
    private final static String NEW_LINE = "\r\n";
    //数据分割线
    private final static String BOUNDARY = "----WebKitFormBoundaryVc5ISK3OrIupy3EZ";

    public static void upload(String url, File[] files) {
        if (files == null || files.length == 0) {
            log.info("上传文件为空");
            return;
        }
        //URL
        URL url2 = null;
        try {
            url2 = new URL(url);
        } catch (MalformedURLException e) {
            throw new RuntimeException("打开URL失败:", e);
        }

        HttpURLConnection connection;
        try {
            connection = (HttpURLConnection) url2.openConnection();
            connection.setRequestMethod("POST");
            connection.setUseCaches(false);
            connection.setDoOutput(true);
            connection.setConnectTimeout(30000);
            connection.setReadTimeout(30000);


            //表单方式提交
            connection.setRequestProperty("content-type", "multipart/form-data; BOUNDARY=" + BOUNDARY);
            connection.setRequestProperty("User-Agent", "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36");
            connection.setRequestProperty("Connection", "Keep-Alive");
            // 设置字符编码
            connection.setRequestProperty("Charset", "UTF-8");

            long content_length = 100;
            connection.setRequestProperty("Range", String.valueOf(content_length));
            try (OutputStream os = connection.getOutputStream()) {
                //向流中输出数据
                //开始写入文件
                int count = 0;
                for (File file : files) {
                    //注意
                    StringBuilder start = new StringBuilder(NEW_LINE + BOUNDARY_PREFIX);
                    start.append(BOUNDARY);
                    start.append(NEW_LINE);
                    //TODO  name可根据业务决定是否写死
                    String name = "qicaiyun" + (++count);
                    start.append("Content-Disposition: form-data; name=\"" + name + "\"; filename=\"");
                    start.append(file.getName());
                    start.append("\"");
                    start.append(NEW_LINE);
                    start.append("Content-type: application/octet-stream");
                    //重要:注意这里是两个换行(其他地方是一个换行)
                    start.append(NEW_LINE);
                    start.append(NEW_LINE);
                    /**
                    ------WebKitFormBoundaryVc5ISK3OrIupy3EZ
                    Content-Disposition: form-data; name="qicaiyun2"; filename="WebSocketClient.java"
                    Content-type: application/octet-stream


                     **/
                    log.debug("start:" + start.toString());
                    os.write(start.toString().getBytes());
                    os.flush();
                    //写入内容
                    byte[] buf = new byte[1024 * 512];
                    try (FileInputStream fis = new FileInputStream(file)) {
                        int len;
                        while ((len = fis.read(buf)) != -1) {
                            os.write(buf, 0, len);
                            content_length += len;
                        }
                        os.flush();
                    }
                    log.debug("写入文件{}到输出流", file.getName());
                }
                //上传文件结束
                StringBuilder end = new StringBuilder(NEW_LINE + BOUNDARY_PREFIX);
                end.append(BOUNDARY);
                end.append("--");
                end.append(NEW_LINE);
                os.write(end.toString().getBytes());
                /**
                 ------WebKitFormBoundaryVc5ISK3OrIupy3EZ--

                 */
                log.debug("end:" + end);
                os.flush();
            }
            //打印返回结果
            try (InputStream is = connection.getInputStream()) {
                if (is != null) {
                    byte[] bytes = new byte[is.available()];
                    is.read(bytes);
                    log.info("返回结果:"+new String(bytes));
                    is.close();
                }
            }
        } catch (IOException e) {
            throw new RuntimeException("打开" + url + "失败:" + e.getMessage());
        }

    }


    /**
     * 客户端实现文件下载
     *
     * @param url
     */
    public static void download(String url) {
        URL url2 = null;
        try {
            url2 = new URL(url);
        } catch (MalformedURLException e) {
            throw new RuntimeException("打开URL失败:", e);
        }
        try {
            HttpURLConnection connection = (HttpURLConnection) url2.openConnection();
            String field = connection.getHeaderField("Content-Disposition");
            String fn = "filename=";
            String fileName = "unknown";
            if (StringUtils.isNotEmpty(field) && field.contains(fn)) {
                fileName = field.substring(field.indexOf(fn));
            }
            FileOutputStream fos;
            try (InputStream is = connection.getInputStream()) {
                //输出的是文件类型
                File file = new File(fileName);
                fos = new FileOutputStream(file);
                byte[] bytes = new byte[1024 * 512];
                int len;
                while ((len = is.read(bytes)) != -1) {
                    fos.write(bytes, 0, len);
                }
            }
            fos.flush();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

    public static void main(String[] args) {
        File[] files = {
                new File("/home/li/IdeaProjects/qicaiyun/src/main/java/com/cqs/qicaiyun/system/net/websocket/PushDemo.java"),
                new File("/home/li/IdeaProjects/qicaiyun/src/main/java/com/cqs/qicaiyun/system/net/websocket/WebSocketClient.java")
        };
        String url = "http://localhost:9090/qicaiyun/image/upload";
        upload(url, files);

        String url2 = "http://localhost:9090/qicaiyun/image/download";
        download(url2);
    }

}

客户端代码参考

服务端代码

  @PostMapping("/upload")
    public Result upload(HttpServletRequest request) {
        try {
            Collection<Part> parts = request.getParts();
            if (parts != null) {
                byte[] buf = new byte[1024 * 512];
                parts.stream().filter(part -> !part.getName().startsWith("qicaiyun"))
                        .forEach(part -> {
                            try (InputStream is = part.getInputStream()) {
                                String name = part.getSubmittedFileName();
//                                log.debug("name:" + name);
                                File file = new File(name);
                                int len;
                                try (FileOutputStream fos = new FileOutputStream(file)) {
                                    while ((len = is.read(buf)) != -1) {
                                        fos.write(buf, 0, len);
                                    }
                                    fos.flush();
                                }
                                log.info("上传文件{}成功", name);
                            } catch (IOException e) {
                                e.printStackTrace();
                            }
                        });
            }
        } catch (IOException | ServletException e) {
            return FailedResult.build().reason(e.getMessage());
        }
        return SuccessResult.build().result("SUCCESS");
    }

    //文件下载
    @GetMapping("/download")
    public void download(HttpServletRequest request, HttpServletResponse response) {
        //下载文件路径 -- demo
        File file = new File("/home/li/Documents/sublime_text_3_build_3176_x64.tar.bz2");
        response.setContentType("multipart/form-data");
        response.setHeader("Content-Disposition", "attachment;filename=" + file.getName());
        try (FileInputStream fis = new FileInputStream(file)) {
            //
            try (ServletOutputStream os = response.getOutputStream()) {
                int len;
                byte[] download = new byte[1024 * 512];
                while ((len = fis.read(download)) != -1) {
                    os.write(download, 0, len);
                }
                os.flush();
            }
            response.setContentLengthLong(file.length());
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,992评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,212评论 3 388
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,535评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,197评论 1 287
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,310评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,383评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,409评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,191评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,621评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,910评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,084评论 1 342
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,763评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,403评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,083评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,318评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,946评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,967评论 2 351

推荐阅读更多精彩内容

  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,644评论 18 139
  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,936评论 25 707
  • 人刚出生的时候是一台刚通电的电脑,有的电脑性能好,多数很平庸,少数设备不全。 通过长时间的外界对其编程,从固定的输...
    Raphael_Wang阅读 597评论 0 0