中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

java實現上傳網絡圖片到微信臨時素材

發布時間:2020-10-09 19:54:07 來源:腳本之家 閱讀:298 作者:修煉到救贖 欄目:編程語言

本文實例為大家分享了java實現上傳網絡圖片到微信臨時素材的具體代碼,供大家參考,具體內容如下

package org.afuos.playcontrol.service;
 
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;
 
import java.io.*;
import java.net.HttpURLConnection;
import java.net.URL;
 
/**
 * Created by Mohon on 2017/8/10.
 */
public class UploadPicToWx {
 
 /**
 * 網絡圖片上傳到微信服務器
 *
 * @param urlPath 圖片路徑
 * @return JSONObject
 * @throws Exception
 */
 public String getMediaIdFromUrl(String urlPath, String fileType) throws Exception {
 String result = null;
 String url = "http://file.api.weixin.qq.com/cgi-bin/media/upload?access_token= Access_token &type=" + fileType + "";
 String fileName = urlPath.substring(urlPath.lastIndexOf("/") + 1);
 // 獲取網絡圖片
 URL mediaUrl = new URL(urlPath);
 HttpURLConnection meidaConn = (HttpURLConnection) mediaUrl.openConnection();
 meidaConn.setDoOutput(true);
 meidaConn.setRequestMethod("GET");
 
 /**
  * 第一部分
  */
 URL urlObj = new URL(url);
 HttpURLConnection con = (HttpURLConnection) urlObj.openConnection();
 con.setRequestMethod("POST"); // 以Post方式提交表單,默認get方式
 con.setDoInput(true);
 con.setDoOutput(true);
 con.setUseCaches(false); // post方式不能使用緩存
 // 設置請求頭信息
 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=\"" + fileName + "\"\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(meidaConn.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();
 meidaConn.disconnect();
 StringBuffer buffer = new StringBuffer();
 BufferedReader reader = null;
 try {
  // 定義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();
  }
 } catch (IOException e) {
  log.info("發送POST請求出現異常! {}", e);
  e.printStackTrace();
  throw new IOException("數據讀取異常");
 } finally {
  if (reader != null) {
  reader.close();
  }
 }
 JSONObject jsonObj = JSON.parseObject(result);
 log.info("getMediaId jsonObj: {}", jsonObj);
 return jsonObj.getString("media_id");
 }
}

來源:UploadPicToWx.java

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

澄城县| 句容市| 堆龙德庆县| 烟台市| 射洪县| 延津县| 勃利县| 紫阳县| 聂荣县| 阿拉善盟| 萨嘎县| 嫩江县| 宁强县| 侯马市| 会东县| 藁城市| 开阳县| 九龙城区| 万载县| 平安县| 饶河县| 慈溪市| 株洲市| 长沙县| 揭西县| 宜州市| 平远县| 临汾市| 元阳县| 新密市| 肇东市| 石家庄市| 宝鸡市| 蕲春县| 七台河市| 民丰县| 荥阳市| 耿马| 新安县| 房山区| 福州市|