Java 中HttpURLConnection附件上传的实例详解

 更新时间:2017年09月17日 09:49:21   作者:xiaobojava  
这篇文章主要介绍了Java 中HttpURLConnection附件上传的实例详解的相关资料,希望通过本文大家能掌握这样的知识内容,需要的朋友可以参考下

Java 中HttpURLConnection附件上传的实例详解

整合了一个自己写的采用Http做附件上传的工具,分享一下!

示例代码:

/** 
 * 以Http协议传输文件 
 * 
 * @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); 
  } 
 
  // 重新设置要请求的服务器地址,即上传文件的地址。 
  public void setUrl(String url) throws Exception { 
    this.url = new URL(url); 
  } 
 
  // 增加一个普通字符串数据到form表单数据中 
  public void addTextParameter(String name, String value) { 
    textParams.put(name, value); 
  } 
 
  // 增加一个文件到form表单数据中 
  public void addFileParameter(String name, File value) { 
    fileparams.put(name, value); 
  } 
 
  // 清空所有已添加的form表单数据 
  public void clearAllParameters() { 
    textParams.clear(); 
    fileparams.clear(); 
  } 
 
  /** 
   * 发送数据到服务器 
   * 
   * @return 一个字节包含服务器的返回结果的数组 
   * @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的一些必须设置 
  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); // 连接超时为10秒 
    conn.setRequestMethod("POST"); 
    conn.setRequestProperty("Content-Type", 
        "multipart/form-data; boundary=" + boundary); 
  } 
 
  // 普通字符串数据 
  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()); 
    } 
  } 
 
  // 文件数据 
  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()); 
    } 
  } 
 
  // 添加结尾数据 
  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"; 
  } 
 
  // 对包含中文的字符串进行转码,此为UTF-8。服务器那边要进行一次解码 
  private String encode(String value) throws Exception { 
    return URLEncoder.encode(value, "UTF-8"); 
  } 
 
} 

如有疑问请留言或者到本站社区交流讨论,感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

相关文章

  • velocity显示List与Map的方法详细解析

    velocity显示List与Map的方法详细解析

    以下是对velocity显示List与Map的方法进行了详细的介绍。需要的朋友可以过来参考下
    2013-08-08
  • SpringBoot快速构建应用程序方法介绍

    SpringBoot快速构建应用程序方法介绍

    这篇文章主要介绍了SpringBoot快速构建应用程序方法介绍,涉及SpringBoot默认的错误页面,嵌入式Web容器层面的约定和定制等相关内容,具有一定借鉴价值,需要的朋友可以参考下。
    2017-11-11
  • Spring+Quartz配置定时任务实现代码

    Spring+Quartz配置定时任务实现代码

    这篇文章主要介绍了Spring+Quartz配置定时任务实现代码,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
    2020-04-04
  • Java中ConcurrentHashMap和Hashtable的区别

    Java中ConcurrentHashMap和Hashtable的区别

    ConcurrentHashMap 和 Hashtable 都是用于在Java中实现线程安全的哈希表数据结构的类,但它们有很多区别,本文就来详细的介绍一下,感兴趣的可以了解一下
    2023-10-10
  • 浅谈springmvc 通过异常增强返回给客户端统一格式

    浅谈springmvc 通过异常增强返回给客户端统一格式

    这篇文章主要介绍了浅谈springmvc 通过异常增强返回给客户端统一格式。具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧
    2020-09-09
  • Spring Boot使用MyBatis进行两个表的关联

    Spring Boot使用MyBatis进行两个表的关联

    本文主要介绍了Spring Boot使用MyBatis进行两个表的关联,通过实例演示了如何使用MyBatis的XML映射文件和注解实现关联操作,具有一定的参考价值,感兴趣的可以了解一下
    2023-09-09
  • springboot如何实现国际化配置

    springboot如何实现国际化配置

    这篇文章主要介绍了springboot如何实现国际化配置问题,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教
    2023-06-06
  • SpringBoot整合Shiro的方法详解

    SpringBoot整合Shiro的方法详解

    Apache Shiro是一个java安全(权限)框架,Shiro可以非常容易的开发出足够好的应用,其不仅可以用在javase环境,也可以用在javaee环境。本文介绍了SpringBoot整合Shiro的方法,需要的可以参考一下
    2022-05-05
  • java 中HashMap、HashSet、TreeMap、TreeSet判断元素相同的几种方法比较

    java 中HashMap、HashSet、TreeMap、TreeSet判断元素相同的几种方法比较

    这篇文章主要介绍了从源码的角度浅析HashMap、TreeMap元素的存储和获取元素的逻辑;从Map与Set之间的关系浅析常用的Set中元素的存储和判断是否重复的逻辑,需要的朋友可以参考下
    2017-01-01
  • Java多线程下解决资源竞争的7种方法详解

    Java多线程下解决资源竞争的7种方法详解

    这篇文章主要介绍了Java多线程下解决资源竞争的7种方法详解,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
    2019-08-08

最新评论