java http 下载文件_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");

}

}

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

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/539099.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

mkdir-yum-tree命令应用案例

案例&#xff1a; 请用一条命令完成目录创建/hello/world/test 解答&#xff1a; mkdir -p /hello/world/test -p 递归创建目录&#xff0c;没有子目录创建。 案例&#xff1a; 打印hello/目录的结构 [roothello110 ~]# tree hello/ -bash: tree: command not found 发…

pytorch 图像分割的交并比_Segmentation101系列-最简单的卷积网络语义分割(1)-PASCAL VOC图像分割...

作者&#xff1a;陈洪瀚 /洪瀚笔记知乎专栏摘要&#xff1a;介绍了使用PyTorch和torchvision加载训练好的全卷积网络FCN或DeepLab模型&#xff0c;并对PASCAL VOC图像进行分割并显示结果。网址&#xff1a;github代码链接, 码云代码链接陈洪瀚​www.zhihu.com一. 准备实验数据下…

python selenium chrome获取每个请求内容_python+selenium调用chrome打开网址获取内容

通过selenium库&#xff0c;python可以调用chrome打开指定网页并获取网页内容或者模拟登陆获取网页内容1&#xff0c;安装selenium和配置chromedriver安装seleniumC:\Users\cord> pip install selenium配置chromedriver该下载什么版本根据浏览器版本以及附录的版本对照表下载…

系统目录结构 ls命令 文件类型 alias命令

2019独角兽企业重金招聘Python工程师标准>>> 2.1/2.2 系统目录结构 /bin&#xff1a;bin是Binary的缩写&#xff0c;该目录下存放的是最常用的命令。 /boot&#xff1a;该目录下存放的是启动Linux时使用的一些核心文件&#xff0c;包括一些连接文件以及镜像文件。 …

运维老鸟教你安装centos6.5如何选择安装包

原文&#xff1a;http://oldboy.blog.51cto.com/2561410/1564620 ------------------------------------------------------------------------------ 近来发现越来越多的运维小伙伴们都有最小化安装系统的洁癖,因此&#xff0c;找老男孩来咨询&#xff0c;这个“洁癖”好习惯…

服务器centos怎么部署_我什么都不会,怎么拥有自己的个人博客呢

博客每个人都想拥有一个属于自己的博客&#xff0c;可以分享自己的心得、技术等&#xff0c;可以很好地展示自己的作品&#xff0c;但是自己又什么都不会怎么才能拥有自己的个人博客呢&#xff1f;一、搭建个人博客需要什么呢(1)购买服务器&#xff0c;个人博客可以购买香港服务…

java 过滤器 过滤文件中的文件_Java 使用FileFilter过滤器对文件进行搜索

FileFilter概述java.io.FileFilter是一个接口&#xff0c;是File的过滤器。该接口的对象可以传递给File类的listFiles(FileFilter filter)作为参数&#xff0c;FileFilter接口中只有一个方法。boolean accept(File pathname):测试pathname是否应该包含在当前File目录中&#xf…

修改yum的镜像服务器为阿里云

1、进入阿里云镜像网站 http://mirrors.aliyun.com/ 2、选择centos---help 3、安装help里的步骤进行操作 1、备份 mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup 2、下载新的CentOS-Base.repo 到/etc/yum.repos.d/ CentOS 5 wget -O /e…

面试记录

东信北邮 智能终端开发工程师 笔试部分 首先去做了一套笔试题&#xff0c;前面选择题都是android基础&#xff0c;后面是sql语句。 有一个问题说的是runtime exception&#xff0c;有四个选项&#xff1a; a. ArithmeticException b. lllegalArgumentException c. NullPointerE…

python有类似mybatis的框架_为什么感觉国内比较流行的 mybatis 在国外好像没人用的样子?...

892019-03-30 21:23:21 08:00 1看了这么多回复。忍不住了&#xff01;1. hibernate 历史悠久并不代表过时&#xff0c;mybatis 这种方式就是未来吗&#xff1f;肯定不是。数据库就是用来存数据的&#xff0c;联表查询一大堆只能说明数据结构设计是有问题的&#xff0c;只是不…

c# 模拟登陆 webbrowser 抓取_《VR+电力——更换绝缘子培训》已登陆Pico Neo 2

原标题&#xff1a;《VR电力——更换绝缘子培训》已登陆Pico Neo 2

java instanceof 继承_Java中的instanceof关键字

Java中&#xff0c;instanceof运算符的前一个操作符是一个引用变量&#xff0c;后一个操作数通常是一个类(可以是接口)&#xff0c;用于判断前面的对象是否是后面的类&#xff0c;或者其子类、实现类的实例。如果是返回true&#xff0c;否则返回false。也就是说&#xff1a;使用…

中文导致Mybatis无效的列索引

<!-- 普铁 --><select id"selectTrainSceneThrough" parameterType"HashMap" resultType"HashMap">select ROUND(("普铁用户专网总流量KB""普铁用户公网总流量KB")/1024/1024,3) as total_dataflow,"普铁用…

python怎么创建配置文件_如何写python的配置文件

一、创建配置文件在D盘建立一个配置文件&#xff0c;名字为&#xff1a;test.ini内容如下&#xff1a;[baseconf]host127.0.0.1port3306userrootpasswordrootdb_namegloryroad[test]ip127.0.0.1int1float1.5boolTrue注意&#xff1a;要将文件保存为ansi编码&#xff0c;utf-8编…

学习笔记-JMeter 进行接口压力测试

一、压力测试场景设置 1、场景设定&#xff1a;进行接口压力测试时&#xff0c;有单场景也有混合场景。单场景就是对一个接口进行请求&#xff1b;混合场景需要对多个接口进行请求&#xff0c;在流程类业务场景会运用到 2、压测时间设定&#xff1a;通常时间为10&#xff0d;15…

Linux的 .bashrc 和.bash_profile和.profile文件

linux启动或是每次打开一个shell的时候都会执行用户家目录下的.bashrc文件&#xff0c;所有可以在这个文件里面添加一些内容&#xff0c;以便Linux每次启动时都会执行相应的内容。 如果ssh方式远程登录Linux时&#xff0c;会自动执行用户家目录下的.bash_profile文件&#xff0…

四宫格效果 css_【深度教研】智力游戏“九宫格” 集体教研活动纪实

【关键词】教研要建立过程模式&#xff0c;规范管理&#xff0c;分层推进&#xff0c;各负其责&#xff0c;及时反馈&#xff0c;展示总结。让教研的过程成为全体教师共同成长的过程。游戏和材料不是一次性的制作和一次性的使用&#xff0c;其价值在于反复玩&#xff0c;玩中学…

java oracle 排序_Oracle的排序和限制条件(order by 和where)

1、Order by子句的使用select column....from ....order by ...1) Order by子句在整个select语句中的位置&#xff1a;始终位于最后2) order by后可以跟什么&#xff1a;列名&#xff0c;列的别名&#xff0c;表达式&#xff0c;列出现在select关键字后的顺序(列号);3) order b…

kettle使用_ETL工具(kettle)-《PentahoKettle解决方案-使用PDI构建开源ETL解决方案》

&#xfeff;Matt Casters的博客:http://www.ibridge.be/、 www.kettle.be书籍:《Pentaho Kettle解决方案&#xff1a;使用PDI构建开源ETL解决方案》 链接&#xff1a;https://pan.baidu.com/s/15iUOWOCb8g_YLo5WN9fh0A 提取码&#xff1a;5upfkettle起源Kettle一词起源于“KDE…

Linux下chkconfig命令详解

原文&#xff1a;http://www.cnblogs.com/panjun-Donet/archive/2010/08/10/1796873.html ------------------------------ chkconfig命令主要用来更新&#xff08;启动或停止&#xff09;和查询系统服务的运行级信息。谨记chkconfig不是立即自动禁止或激活一个服务&#xff0…