全网整合营销服务商

电脑端+手机端+微信端=数据同步管理

免费咨询热线:400-708-3566

JAVA通过HttpURLConnection 上传和下载文件的方法

本文介绍了JAVA通过HttpURLConnection 上传和下载文件的方法,分享给大家,具体如下:

HttpURLConnection文件上传

HttpURLConnection采用模拟浏览器上传的数据格式,上传给服务器

上传代码如下:

package com.util;

import java.io.BufferedInputStream;
import java.io.BufferedReader;
import java.io.DataOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.io.OutputStreamWriter;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLConnection;
import java.util.Iterator;
import java.util.Map;

/**
 * Java原生的API可用于发送HTTP请求,即java.net.URL、java.net.URLConnection,这些API很好用、很常用,
 * 但不够简便;
 * 
 * 1.通过统一资源定位器(java.net.URL)获取连接器(java.net.URLConnection) 2.设置请求的参数 3.发送请求
 * 4.以输入流的形式获取返回内容 5.关闭输入流
 * 
 * @author H__D
 *
 */
public class HttpConnectionUtil {


 /**
  * 多文件上传的方法
  * 
  * @param actionUrl:上传的路径
  * @param uploadFilePaths:需要上传的文件路径,数组
  * @return
  */
 @SuppressWarnings("finally")
 public static String uploadFile(String actionUrl, String[] uploadFilePaths) {
  String end = "\r\n";
  String twoHyphens = "--";
  String boundary = "*****";

  DataOutputStream ds = null;
  InputStream inputStream = null;
  InputStreamReader inputStreamReader = null;
  BufferedReader reader = null;
  StringBuffer resultBuffer = new StringBuffer();
  String tempLine = null;

  try {
   // 统一资源
   URL url = new URL(actionUrl);
   // 连接类的父类,抽象类
   URLConnection urlConnection = url.openConnection();
   // http的连接类
   HttpURLConnection httpURLConnection = (HttpURLConnection) urlConnection;

   // 设置是否从httpUrlConnection读入,默认情况下是true;
   httpURLConnection.setDoInput(true);
   // 设置是否向httpUrlConnection输出
   httpURLConnection.setDoOutput(true);
   // Post 请求不能使用缓存
   httpURLConnection.setUseCaches(false);
   // 设定请求的方法,默认是GET
   httpURLConnection.setRequestMethod("POST");
   // 设置字符编码连接参数
   httpURLConnection.setRequestProperty("Connection", "Keep-Alive");
   // 设置字符编码
   httpURLConnection.setRequestProperty("Charset", "UTF-8");
   // 设置请求内容类型
   httpURLConnection.setRequestProperty("Content-Type", "multipart/form-data;boundary=" + boundary);

   // 设置DataOutputStream
   ds = new DataOutputStream(httpURLConnection.getOutputStream());
   for (int i = 0; i < uploadFilePaths.length; i++) {
    String uploadFile = uploadFilePaths[i];
    String filename = uploadFile.substring(uploadFile.lastIndexOf("//") + 1);
    ds.writeBytes(twoHyphens + boundary + end);
    ds.writeBytes("Content-Disposition: form-data; " + "name=\"file" + i + "\";filename=\"" + filename
      + "\"" + end);
    ds.writeBytes(end);
    FileInputStream fStream = new FileInputStream(uploadFile);
    int bufferSize = 1024;
    byte[] buffer = new byte[bufferSize];
    int length = -1;
    while ((length = fStream.read(buffer)) != -1) {
     ds.write(buffer, 0, length);
    }
    ds.writeBytes(end);
    /* close streams */
    fStream.close();
   }
   ds.writeBytes(twoHyphens + boundary + twoHyphens + end);
   /* close streams */
   ds.flush();
   if (httpURLConnection.getResponseCode() >= 300) {
    throw new Exception(
      "HTTP Request is not success, Response code is " + httpURLConnection.getResponseCode());
   }

   if (httpURLConnection.getResponseCode() == HttpURLConnection.HTTP_OK) {
    inputStream = httpURLConnection.getInputStream();
    inputStreamReader = new InputStreamReader(inputStream);
    reader = new BufferedReader(inputStreamReader);
    tempLine = null;
    resultBuffer = new StringBuffer();
    while ((tempLine = reader.readLine()) != null) {
     resultBuffer.append(tempLine);
     resultBuffer.append("\n");
    }
   }

  } catch (Exception e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
  } finally {
   if (ds != null) {
    try {
     ds.close();
    } catch (IOException e) {
     // TODO Auto-generated catch block
     e.printStackTrace();
    }
   }
   if (reader != null) {
    try {
     reader.close();
    } catch (IOException e) {
     // TODO Auto-generated catch block
     e.printStackTrace();
    }
   }
   if (inputStreamReader != null) {
    try {
     inputStreamReader.close();
    } catch (IOException e) {
     // TODO Auto-generated catch block
     e.printStackTrace();
    }
   }
   if (inputStream != null) {
    try {
     inputStream.close();
    } catch (IOException e) {
     // TODO Auto-generated catch block
     e.printStackTrace();
    }
   }

   return resultBuffer.toString();
  }
 }


 public static void main(String[] args) {

  // 上传文件测试
   String str = uploadFile("http://127.0.0.1:8080/image/image.do",new String[] { "/Users//H__D/Desktop//1.png","//Users/H__D/Desktop/2.png" });
   System.out.println(str);


 }

}

HttpURLConnection文件下载

下载代码如下:

package com.util;

import java.io.BufferedInputStream;
import java.io.BufferedReader;
import java.io.DataOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.io.OutputStreamWriter;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLConnection;
import java.util.Iterator;
import java.util.Map;

/**
 * Java原生的API可用于发送HTTP请求,即java.net.URL、java.net.URLConnection,这些API很好用、很常用,
 * 但不够简便;
 * 
 * 1.通过统一资源定位器(java.net.URL)获取连接器(java.net.URLConnection) 2.设置请求的参数 3.发送请求
 * 4.以输入流的形式获取返回内容 5.关闭输入流
 * 
 * @author H__D
 *
 */
public class HttpConnectionUtil {


 /**
  * 
  * @param urlPath
  *   下载路径
  * @param downloadDir
  *   下载存放目录
  * @return 返回下载文件
  */
 public static File downloadFile(String urlPath, String downloadDir) {
  File file = null;
  try {
   // 统一资源
   URL url = new URL(urlPath);
   // 连接类的父类,抽象类
   URLConnection urlConnection = url.openConnection();
   // http的连接类
   HttpURLConnection httpURLConnection = (HttpURLConnection) urlConnection;
   // 设定请求的方法,默认是GET
   httpURLConnection.setRequestMethod("POST");
   // 设置字符编码
   httpURLConnection.setRequestProperty("Charset", "UTF-8");
   // 打开到此 URL 引用的资源的通信链接(如果尚未建立这样的连接)。
   httpURLConnection.connect();

   // 文件大小
   int fileLength = httpURLConnection.getContentLength();

   // 文件名
   String filePathUrl = httpURLConnection.getURL().getFile();
   String fileFullName = filePathUrl.substring(filePathUrl.lastIndexOf(File.separatorChar) + 1);

   System.out.println("file length---->" + fileLength);

   URLConnection con = url.openConnection();

   BufferedInputStream bin = new BufferedInputStream(httpURLConnection.getInputStream());

   String path = downloadDir + File.separatorChar + fileFullName;
   file = new File(path);
   if (!file.getParentFile().exists()) {
    file.getParentFile().mkdirs();
   }
   OutputStream out = new FileOutputStream(file);
   int size = 0;
   int len = 0;
   byte[] buf = new byte[1024];
   while ((size = bin.read(buf)) != -1) {
    len += size;
    out.write(buf, 0, size);
    // 打印下载百分比
    // System.out.println("下载了-------> " + len * 100 / fileLength +
    // "%\n");
   }
   bin.close();
   out.close();
  } catch (MalformedURLException e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
  } catch (IOException e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
  } finally {
   return file;
  }

 }

 public static void main(String[] args) {

  // 下载文件测试
  downloadFile("http://localhost:8080/images/1467523487190.png", "/Users/H__D/Desktop");

 }

}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。


# java文件上传和下载  # java文件上传下载  # JAVA  # HttpURLConnection  # 上传  # 下载  # Java HttpURLConnection使用方法与实例演示分析  # 浅谈Java HttpURLConnection请求方式  # 一文读懂JAVA中HttpURLConnection的用法  # Java HttpURLConnection使用方法详解  # java HttpURLConnection类的disconnect方法与http长连接详解  # 定位器  # 很好用  # 文件上传  # 可用于  # 抽象类  # 给大家  # 到此  # 大家多多  # 上传文件  # 情况下  # 数据格式  # param  # twoHyphens  # boundary  # null  # inputStream  # ds  # inputStreamReader  # HttpConnectionUtil 


相关文章: 如何在阿里云虚拟服务器快速搭建网站?  专业商城网站制作公司有哪些,pi商城官网是哪个?  网站制作模板下载什么软件,ppt模板免费下载网站?  学校为何禁止电信移动建设网站?  建站主机数据库如何配置才能提升网站性能?  桂林网站制作公司有哪些,桂林马拉松怎么报名?  宝塔Windows建站如何避免显示默认IIS页面?  网站app免费制作软件,能免费看各大网站视频的手机app?  外汇网站制作流程,如何在工商银行网站上做外汇买卖?  如何用手机制作网站和网页,手机移动端的网站能制作成中英双语的吗?  名字制作网站免费,所有小说网站的名字?  家具网站制作软件,家具厂怎么跑业务?  如何选择域名并搭建高效网站?  武汉外贸网站制作公司,现在武汉外贸前景怎么样啊?  如何在万网开始建站?分步指南解析  如何在建站之星绑定自定义域名?  建站之星安装失败:服务器环境不兼容?  微信推文制作网站有哪些,怎么做微信推文,急?  建站之星如何保障用户数据免受黑客入侵?  建站之星与建站宝盒如何选择最佳方案?  娃派WAP自助建站:免费模板+移动优化,快速打造专业网站  手机网站制作平台,手机靓号代理商怎么制作属于自己的手机靓号网站?  建站三合一如何选?哪家性价比更高?  建站之星免费版是否永久可用?  郑州企业网站制作公司,郑州招聘网站有哪些?  如何在云主机上快速搭建网站?  详解免费开源的.NET多类型文件解压缩组件SharpZipLib(.NET组件介绍之七)  大连 网站制作,大连天途有线官网?  制作网站外包平台,自动化接单网站有哪些?  专业网站制作企业网站,如何制作一个企业网站,建设网站的基本步骤有哪些?  如何在云服务器上快速搭建个人网站?  宝盒自助建站智能生成技巧:SEO优化与关键词设置指南  如何打造高效商业网站?建站目的决定转化率  网站制作专业公司有哪些,如何制作一个企业网站,建设网站的基本步骤有哪些?  图册素材网站设计制作软件,图册的导出方式有几种?  如何用wdcp快速搭建高效网站?  西安大型网站制作公司,西安招聘网站最好的是哪个?  网站制作壁纸教程视频,电脑壁纸网站?  免费网站制作appp,免费制作app哪个平台好?  如何制作一个表白网站视频,关于勇敢表白的小标题?  网站制作的方法有哪些,如何将自己制作的网站发布到网上?  洛阳网站制作公司有哪些,洛阳的招聘网站都有哪些?  网站制作新手教程,新手建设一个网站需要注意些什么?  如何做静态网页,sublimetext3.0制作静态网页?  如何优化Golang Web性能_Golang HTTP服务器性能提升方法  如何自定义建站之星模板颜色并下载新样式?  如何在景安服务器上快速搭建个人网站?  ,网站推广常用方法?  如何通过虚拟主机快速完成网站搭建?  网站制作培训多少钱一个月,网站优化seo培训课程有哪些? 

您的项目需求

*请认真填写需求信息,我们会在24小时内与您取得联系。