欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

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

 更新時(shí)間:2017年09月17日 09:49:21   作者:xiaobojava  
這篇文章主要介紹了Java 中HttpURLConnection附件上傳的實(shí)例詳解的相關(guān)資料,希望通過本文大家能掌握這樣的知識(shí)內(nèi)容,需要的朋友可以參考下

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

整合了一個(gè)自己寫的采用Http做附件上傳的工具,分享一下!

示例代碼:

/** 
 * 以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è)置要請(qǐng)求的服務(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"; 
  } 
 
  // 對(duì)包含中文的字符串進(jìn)行轉(zhuǎn)碼,此為UTF-8。服務(wù)器那邊要進(jìn)行一次解碼 
  private String encode(String value) throws Exception { 
    return URLEncoder.encode(value, "UTF-8"); 
  } 
 
} 

如有疑問請(qǐng)留言或者到本站社區(qū)交流討論,感謝閱讀,希望能幫助到大家,謝謝大家對(duì)本站的支持!

相關(guān)文章

  • velocity顯示List與Map的方法詳細(xì)解析

    velocity顯示List與Map的方法詳細(xì)解析

    以下是對(duì)velocity顯示List與Map的方法進(jìn)行了詳細(xì)的介紹。需要的朋友可以過來參考下
    2013-08-08
  • SpringBoot快速構(gòu)建應(yīng)用程序方法介紹

    SpringBoot快速構(gòu)建應(yīng)用程序方法介紹

    這篇文章主要介紹了SpringBoot快速構(gòu)建應(yīng)用程序方法介紹,涉及SpringBoot默認(rèn)的錯(cuò)誤頁(yè)面,嵌入式Web容器層面的約定和定制等相關(guān)內(nèi)容,具有一定借鑒價(jià)值,需要的朋友可以參考下。
    2017-11-11
  • Spring+Quartz配置定時(shí)任務(wù)實(shí)現(xiàn)代碼

    Spring+Quartz配置定時(shí)任務(wù)實(shí)現(xiàn)代碼

    這篇文章主要介紹了Spring+Quartz配置定時(shí)任務(wù)實(shí)現(xiàn)代碼,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下
    2020-04-04
  • Java中ConcurrentHashMap和Hashtable的區(qū)別

    Java中ConcurrentHashMap和Hashtable的區(qū)別

    ConcurrentHashMap?和?Hashtable?都是用于在Java中實(shí)現(xiàn)線程安全的哈希表數(shù)據(jù)結(jié)構(gòu)的類,但它們有很多區(qū)別,本文就來詳細(xì)的介紹一下,感興趣的可以了解一下
    2023-10-10
  • 淺談springmvc 通過異常增強(qiáng)返回給客戶端統(tǒng)一格式

    淺談springmvc 通過異常增強(qiáng)返回給客戶端統(tǒng)一格式

    這篇文章主要介紹了淺談springmvc 通過異常增強(qiáng)返回給客戶端統(tǒng)一格式。具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過來看看吧
    2020-09-09
  • Spring?Boot使用MyBatis進(jìn)行兩個(gè)表的關(guān)聯(lián)

    Spring?Boot使用MyBatis進(jìn)行兩個(gè)表的關(guān)聯(lián)

    本文主要介紹了Spring?Boot使用MyBatis進(jìn)行兩個(gè)表的關(guān)聯(lián),通過實(shí)例演示了如何使用MyBatis的XML映射文件和注解實(shí)現(xiàn)關(guān)聯(lián)操作,具有一定的參考價(jià)值,感興趣的可以了解一下
    2023-09-09
  • springboot如何實(shí)現(xiàn)國(guó)際化配置

    springboot如何實(shí)現(xiàn)國(guó)際化配置

    這篇文章主要介紹了springboot如何實(shí)現(xiàn)國(guó)際化配置問題,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2023-06-06
  • SpringBoot整合Shiro的方法詳解

    SpringBoot整合Shiro的方法詳解

    Apache?Shiro是一個(gè)java安全(權(quán)限)框架,Shiro可以非常容易的開發(fā)出足夠好的應(yīng)用,其不僅可以用在javase環(huán)境,也可以用在javaee環(huán)境。本文介紹了SpringBoot整合Shiro的方法,需要的可以參考一下
    2022-05-05
  • java 中HashMap、HashSet、TreeMap、TreeSet判斷元素相同的幾種方法比較

    java 中HashMap、HashSet、TreeMap、TreeSet判斷元素相同的幾種方法比較

    這篇文章主要介紹了從源碼的角度淺析HashMap、TreeMap元素的存儲(chǔ)和獲取元素的邏輯;從Map與Set之間的關(guān)系淺析常用的Set中元素的存儲(chǔ)和判斷是否重復(fù)的邏輯,需要的朋友可以參考下
    2017-01-01
  • Java多線程下解決資源競(jìng)爭(zhēng)的7種方法詳解

    Java多線程下解決資源競(jìng)爭(zhēng)的7種方法詳解

    這篇文章主要介紹了Java多線程下解決資源競(jìng)爭(zhēng)的7種方法詳解,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下
    2019-08-08

最新評(píng)論