溫馨提示×

溫馨提示×

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

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

Java 中的附件上傳功能怎么利用HttpURLConnection實(shí)現(xiàn)

發(fā)布時(shí)間:2020-12-05 15:35:30 來源:億速云 閱讀:183 作者:Leah 欄目:編程語言

本篇文章給大家分享的是有關(guān)Java 中的附件上傳功能怎么利用HttpURLConnection實(shí)現(xiàn),小編覺得挺實(shí)用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

Java 中HttpURLConnection附件上傳的實(shí)例詳解

示例代碼:

/** 
 * 以Http協(xié)議傳輸文件 
 * 
 * @author mingxue.zhang@163.com 
 * 
 */ 
public class HttpPostUtil { 
 
  private final static char[] MULTIPART_CHARS = "-_1234567890abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ" 
      .toCharArray(); 
 
  private URL url; 
  private HttpURLConnection conn; 
  private String boundary = null; 
  private Map<String, String> textParams = new HashMap<String, String>(); 
  private Map<String, File> fileparams = new HashMap<String, File>(); 
 
  public HttpPostUtil(String url) throws Exception { 
    this.url = new URL(url); 
  } 
 
  // 重新設(shè)置要請求的服務(wù)器地址,即上傳文件的地址。 
  public void setUrl(String url) throws Exception { 
    this.url = new URL(url); 
  } 
 
  // 增加一個(gè)普通字符串?dāng)?shù)據(jù)到form表單數(shù)據(jù)中 
  public void addTextParameter(String name, String value) { 
    textParams.put(name, value); 
  } 
 
  // 增加一個(gè)文件到form表單數(shù)據(jù)中 
  public void addFileParameter(String name, File value) { 
    fileparams.put(name, value); 
  } 
 
  // 清空所有已添加的form表單數(shù)據(jù) 
  public void clearAllParameters() { 
    textParams.clear(); 
    fileparams.clear(); 
  } 
 
  /** 
   * 發(fā)送數(shù)據(jù)到服務(wù)器 
   * 
   * @return 一個(gè)字節(jié)包含服務(wù)器的返回結(jié)果的數(shù)組 
   * @throws Exception 
   */ 
  public byte[] send() throws Exception { 
    initConnection(); 
    try { 
      conn.connect(); 
    } catch (SocketTimeoutException e) { 
      throw new Exception(e); 
    } 
 
    OutputStream connOutStream = new DataOutputStream( 
        conn.getOutputStream()); 
 
    writeFileParams(connOutStream); 
    writeStringParams(connOutStream); 
    writesEnd(connOutStream); 
 
    InputStream responseInStream = conn.getInputStream(); 
    ByteArrayOutputStream responseOutStream = new ByteArrayOutputStream(); 
    int len; 
    byte[] bufferByte = new byte[1024]; 
    while ((len = responseInStream.read(bufferByte)) != -1) { 
      responseOutStream.write(bufferByte, 0, len); 
    } 
    responseInStream.close(); 
    connOutStream.close(); 
 
    conn.disconnect(); 
    byte[] resultByte = responseOutStream.toByteArray(); 
    responseOutStream.close(); 
    return resultByte; 
  } 
 
  // 文件上傳的connection的一些必須設(shè)置 
  private void initConnection() throws Exception { 
    StringBuffer buf = new StringBuffer("----"); 
    Random rand = new Random(); 
    for (int i = 0; i < 15; i++) { 
      buf.append(MULTIPART_CHARS[rand.nextInt(MULTIPART_CHARS.length)]); 
    } 
    this.boundary = buf.toString(); 
 
    conn = (HttpURLConnection) this.url.openConnection(); 
    conn.setDoOutput(true); 
    conn.setUseCaches(false); 
    conn.setConnectTimeout(3 * 60 * 1000); // 連接超時(shí)為10秒 
    conn.setRequestMethod("POST"); 
    conn.setRequestProperty("Content-Type", 
        "multipart/form-data; boundary=" + boundary); 
  } 
 
  // 普通字符串?dāng)?shù)據(jù) 
  private void writeStringParams(OutputStream out) throws Exception { 
    Set<String> keySet = textParams.keySet(); 
    for (Iterator<String> it = keySet.iterator(); it.hasNext();) { 
      String name = it.next(); 
      String value = textParams.get(name); 
 
      out.write(("--" + boundary + "\r\n").getBytes()); 
      out.write(("Content-Disposition: form-data; name=\"" + name + "\"\r\n") 
          .getBytes()); 
      out.write(("\r\n").getBytes()); 
      out.write((encode(value) + "\r\n").getBytes()); 
    } 
  } 
 
  // 文件數(shù)據(jù) 
  private void writeFileParams(OutputStream out) throws Exception { 
    Set<String> keySet = fileparams.keySet(); 
    for (Iterator<String> it = keySet.iterator(); it.hasNext();) { 
      String name = it.next(); 
      File value = fileparams.get(name); 
 
      out.write(("--" + boundary + "\r\n").getBytes()); 
      out.write(("Content-Disposition: form-data; name=\"" + name 
          + "\"; filename=\"" + encode(value.getName()) + "\"\r\n") 
          .getBytes()); 
      out.write(("Content-Type: " + getContentType(value) + "\r\n") 
          .getBytes()); 
      out.write(("Content-Transfer-Encoding: " + "binary" + "\r\n") 
          .getBytes()); 
 
      out.write(("\r\n").getBytes()); 
 
      FileInputStream inStream = new FileInputStream(value); 
      int bytes = 0; 
      byte[] bufferByte = new byte[1024]; 
      while ((bytes = inStream.read(bufferByte)) != -1) { 
        out.write(bufferByte, 0, bytes); 
      } 
      inStream.close(); 
 
      out.write(("\r\n").getBytes()); 
    } 
  } 
 
  // 添加結(jié)尾數(shù)據(jù) 
  private void writesEnd(OutputStream out) throws Exception { 
    out.write(("--" + boundary + "--" + "\r\n").getBytes()); 
    out.write(("\r\n").getBytes()); 
  } 
 
  // 獲取文件的上傳類型,圖片格式為image/png,image/jpg等。非圖片為application/octet-stream 
  private String getContentType(File f) throws Exception { 
    String fileName = f.getName(); 
    if (fileName.endsWith(".jpg")) { 
      return "image/jpeg"; 
    } else if (fileName.endsWith(".png")) { 
      return "image/png"; 
    } 
    return "application/octet-stream"; 
  } 
 
  // 對包含中文的字符串進(jìn)行轉(zhuǎn)碼,此為UTF-8。服務(wù)器那邊要進(jìn)行一次解碼 
  private String encode(String value) throws Exception { 
    return URLEncoder.encode(value, "UTF-8"); 
  } 
 
} 

以上就是Java 中的附件上傳功能怎么利用HttpURLConnection實(shí)現(xiàn),小編相信有部分知識點(diǎn)可能是我們?nèi)粘9ぷ鲿姷交蛴玫降?。希望你能通過這篇文章學(xué)到更多知識。更多詳情敬請關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI