码迷,mamicode.com
首页 > 微信 > 详细

微信开发上传素材工具类

时间:2016-07-25 14:31:14      阅读:358      评论:0      收藏:0      [点我收藏+]

标签:

  /**
     * 上传素材
     * @author matao
     * @date 2016年7月20日
     */
    public static String uploadMedia(String uploadMediaUrl, MultipartFile file) throws IOException
    {
        String result = null;

        HttpURLConnection con = (HttpURLConnection) new URL(uploadMediaUrl).openConnection();
        
        // 以Post方式提交表单,默认get方式
        con.setRequestMethod("POST");
        // post方式不能使用缓存
        con.setUseCaches(false);
        con.setDoInput(true);
        con.setDoOutput(true);

        // 设置请求头信息
        con.setRequestProperty("Connection", "Keep-Alive");
        con.setRequestProperty("Charset", "UTF-8");

        // 设置边界
        String BOUNDARY = "----------" + System.currentTimeMillis();
        con.setRequestProperty("Content-Type", "multipart/form-data; boundary="+ BOUNDARY);

        // 请求正文信息
        StringBuilder sb = new StringBuilder();

        sb.append("--"); // 必须多两道线
        sb.append(BOUNDARY);
        sb.append("\r\n");
        sb.append("Content-Disposition: form-data;name=\"media\";filename=\""+ file.getOriginalFilename() + "\" \r\n");
        sb.append("Content-Type:application/octet-stream\r\n\r\n");

        byte[] head = sb.toString().getBytes("utf-8");
        // 获得输出流
        OutputStream out = new DataOutputStream(con.getOutputStream());
        // 输出表头
        out.write(head);
        
        // 把文件已流文件的方式 推入到url中
        DataInputStream in = new DataInputStream(file.getInputStream());

        int bytes = 0;
        byte[] bufferOut = new byte[1024];

        while ((bytes = in.read(bufferOut)) != -1)
        {
            out.write(bufferOut, 0, bytes);
        }

        in.close();

        // 结尾部分
        byte[] foot = ("\r\n--" + BOUNDARY + "--\r\n").getBytes("utf-8");// 定义最后数据分隔线

        out.write(foot);
        out.flush();
        out.close();
        
        StringBuffer buffer = new StringBuffer();
        BufferedReader reader = null;

        // 定义BufferedReader输入流来读取URL的响应
        reader = new BufferedReader(new InputStreamReader(con.getInputStream()));

        String line = null;
        
        while ((line = reader.readLine()) != null)
        {
            buffer.append(line);
        }

        if (result == null)
        {
            result = buffer.toString();
        }

        return result;
    }

微信开发上传素材工具类

标签:

原文地址:http://www.cnblogs.com/Jmatao/p/5703124.html

(0)
(1)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!