HttpClient通过Post上传文件(转)
在之前一段的项目中,使用Java模仿Http Post方式发送参数以及文件,单纯的传递参数或者文件可以使用URLConnection进行相应的处理。
但是项目中涉及到既要传递普通参数,也要传递多个文件(不是单纯的传递XML文件)。在网上寻找之后,发现是使用HttClient来进行响应的操作,起初尝试多次依然不能传递参数和传递文件,后来发现时因为当使用HttpClient时,不能使用request.getParameter()对普通参数进行获取,而要在服务器端使用Upload来进行操作。
HttpClient4.2 jar下载 :http://download.csdn.net/detail/just_szl/4370574
客户端代码:
- import java.io.ByteArrayOutputStream;
- import java.io.File;
- import java.io.IOException;
- import java.io.InputStream;
- import org.apache.http.HttpEntity;
- import org.apache.http.HttpResponse;
- import org.apache.http.HttpStatus;
- import org.apache.http.ParseException;
- import org.apache.http.client.HttpClient;
- import org.apache.http.client.methods.HttpPost;
- import org.apache.http.entity.mime.MultipartEntity;
- import org.apache.http.entity.mime.content.FileBody;
- import org.apache.http.impl.client.DefaultHttpClient;
- import org.apache.http.util.EntityUtils;
- /**
- *
- * @author <a href="mailto:just_szl@hotmail.com"> Geray</a>
- * @version 1.0,2012-6-12
- */
- public class HttpPostArgumentTest2 {
- //file1与file2在同一个文件夹下 filepath是该文件夹指定的路径
- public void SubmitPost(String url,String filename1,String filename2, String filepath){
- HttpClient httpclient = new DefaultHttpClient();
- try {
- HttpPost httppost = new HttpPost(url);
- FileBody bin = new FileBody(new File(filepath + File.separator + filename1));
- FileBody bin2 = new FileBody(new File(filepath + File.separator + filename2));
- StringBody comment = new StringBody(filename1);
- MultipartEntity reqEntity = new MultipartEntity();
- reqEntity.addPart("file1", bin);//file1为请求后台的File upload;属性
- reqEntity.addPart("file2", bin2);//file2为请求后台的File upload;属性
- reqEntity.addPart("filename1", comment);//filename1为请求后台的普通参数;属性
- httppost.setEntity(reqEntity);
- HttpResponse response = httpclient.execute(httppost);
- int statusCode = response.getStatusLine().getStatusCode();
- if(statusCode == HttpStatus.SC_OK){
- System.out.println("服务器正常响应.....");
- HttpEntity resEntity = response.getEntity();
- System.out.println(EntityUtils.toString(resEntity));//httpclient自带的工具类读取返回数据
- System.out.println(resEntity.getContent());
- EntityUtils.consume(resEntity);
- }
- } catch (ParseException e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- } catch (IOException e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- } finally {
- try {
- httpclient.getConnectionManager().shutdown();
- } catch (Exception ignore) {
- }
- }
- }
- /**
- * @param args
- */
- public static void main(String[] args) {
- // TODO Auto-generated method stub
- HttpPostArgumentTest2 httpPostArgumentTest2 = new HttpPostArgumentTest2();
- httpPostArgumentTest2.SubmitPost("http://127.0.0.1:8080/demo/receiveData.do",
- "test.xml","test.zip","D://test");
- }
- }
服务端代码:
- public void receiveData(HttpServletRequest request, HttpServletResponse response) throws AppException{
- PrintWriter out = null;
- response.setContentType("text/html;charset=UTF-8");
- Map map = new HashMap();
- FileItemFactory factory = new DiskFileItemFactory();
- ServletFileUpload upload = new ServletFileUpload(factory);
- File directory = null;
- List<FileItem> items = new ArrayList();
- try {
- items = upload.parseRequest(request);
- // 得到所有的文件
- Iterator<FileItem> it = items.iterator();
- while (it.hasNext()) {
- FileItem fItem = (FileItem) it.next();
- String fName = "";
- Object fValue = null;
- if (fItem.isFormField()) { // 普通文本框的值
- fName = fItem.getFieldName();
- // fValue = fItem.getString();
- fValue = fItem.getString("UTF-8");
- map.put(fName, fValue);
- } else { // 获取上传文件的值
- fName = fItem.getFieldName();
- fValue = fItem.getInputStream();
- map.put(fName, fValue);
- String name = fItem.getName();
- if(name != null && !("".equals(name))) {
- name = name.substring(name.lastIndexOf(File.separator) + 1);
- // String stamp = StringUtils.getFormattedCurrDateNumberString();
- String timestamp_Str = TimeUtils.getCurrYearYYYY();
- directory = new File("d://test");
- directory.mkdirs();
- String filePath = ("d://test")+ timestamp_Str+ File.separator + name;
- map.put(fName + "FilePath", filePath);
- InputStream is = fItem.getInputStream();
- FileOutputStream fos = new FileOutputStream(filePath);
- byte[] buffer = new byte[1024];
- while (is.read(buffer) > 0) {
- fos.write(buffer, 0, buffer.length);
- }
- fos.flush();
- fos.close();
- map.put(fName + "FileName", name);
- }
- }
- }
- } catch (Exception e) {
- System.out.println("读取http请求属性值出错!");
- // e.printStackTrace();
- logger.error("读取http请求属性值出错");
- }
- // 数据处理
- try {
- out = response.getWriter();
- out.print("{success:true, msg:'接收成功'}");
- out.close();
- } catch (IOException e) {
- e.printStackTrace();
- }
- }
http://blog.csdn.net/Just_szl/article/details/7659347
HttpClient通过Post上传文件(转)的更多相关文章
- WebAPI通过multipart/form-data方式同时上传文件以及数据(含HttpClient上传Demo)
简单的Demo,用于了解WebAPI如何同时接收文件及数据,同时提供HttpClient模拟如何同时上传文件和数据的Demo,下面是HttpClient上传的Demo界面 1.HttpClient部分 ...
- [转]httpclient 上传文件、下载文件
用httpclient4.3 post方式推送文件到服务端 准备:httpclient-4.3.3.jar:httpcore-4.3.2.jar:httpmime-4.3.3.jar/** * 上传 ...
- 转 Android网络编程之使用HttpClient批量上传文件 MultipartEntityBuilder
请尊重他人的劳动成果,转载请注明出处:Android网络编程之使用HttpClient批量上传文件 http://www.tuicool.com/articles/Y7reYb 我曾在<Andr ...
- HttpClient MultipartEntityBuilder 上传文件
文章转载自: http://blog.csdn.net/yan8024/article/details/46531901 http://www.51testing.com/html/56/n-3707 ...
- HttpClient 测试web API上传文件实例
1.使用HttpClient 测试上传文件并且设置header信息: using Lemon.Common; using Newtonsoft.Json; using System; using Sy ...
- Java使用HttpClient上传文件
Java可以使用HttpClient发送Http请求.上传文件等,非常的方便 Maven <dependency> <groupId>org.apache.httpcompon ...
- HttpClient上传文件
1.上传客户端代码: public static void upload() { CloseableHttpClient httpclient = HttpClients.createDefault( ...
- 【httpclient-4.3.1.jar】httpclient发送get、post请求以及携带数据上传文件
1.发送get.post携带参数以及post请求接受JSON数据: package cn.qlq.utils; import java.io.BufferedReader; import java.i ...
- .Net使用HttpClient以multipart/form-data形式post上传文件及其相关参数
前言: 本次要讲的是使用.Net HttpClient拼接multipark/form-data形式post上传文件和相关参数,并接收到上传文件成功后返回过来的结果(图片地址,和是否成功).可能有很多 ...
随机推荐
- spring aop 拦截业务方法,实现权限控制
难点:aop类是普通的java类,session是无法注入的,那么在有状态的系统中如何获取用户相关信息呢,session是必经之路啊,获取session就变的很重要.思索很久没有办法,后来在网上看到了 ...
- [eclipse]“Syntax error, insert "}" to complete”报错的解决方案
背景:本人在网上学习java时,看到一段样例代码比较好,因此复制粘贴到eclipse中看看编译结果.结果eclipse报"Syntax error, insert "}" ...
- jQuery无刷新上传之uploadify简单试用
先简单的侃两句:貌似已经有两个月的时间没有写过文章了,不过仍会像以前那样每天至少有一至两个小时是泡在园子里看各位大神的文章.前些天在研究“ajax无刷新上传”方面的一些插件,用SWFUpload实现了 ...
- js实现(全选)多选按钮
第一种,全部选中: <html> <head> <title>复选框checked属性</title> <script language=&quo ...
- js模板
作用 适合用于定义模板(模板容器),不解析(渲染/执行). 为什么这样使用 在js里面,经常需要使用js往页面中插入html内容.比如这样: var number = 123; $('#d').app ...
- OpenStack虚拟机状态
OpenStack创建一个虚拟机,涉及到三种状态,vm_state,task_state和power_state. 先总结几点: 电源状态(power_state):是hypervisor的状态,从计 ...
- iOS是怎么"绘画"的?
什么是绘图引擎 如果您以前从事其它平台的图形/界面开发或者游戏开发,一定知道, 不管上层UI怎么呈现和响应, 底层必须有一个绘图引擎. iOS也不例外. 本文详细介绍了iOS Graphics的用法和 ...
- hdu-5834 Magic boy Bi Luo with his excited tree(树形dp)
题目链接: Magic boy Bi Luo with his excited tree Time Limit: 8000/4000 MS (Java/Others) Memory Limit: ...
- POJ 1066 Treasure Hunt --几何,线段相交
题意: 正方形的房子,给一些墙,墙在区域内是封闭的,给你人的坐标,每穿过一道墙需要一把钥匙,问走出正方形需要多少把钥匙. 解法: 因为墙是封闭的,所以绕路也不会减少通过的墙的个数,还不如不绕路走直线, ...
- HDU 1576 A/B【扩展欧几里德】
设A/B=x,则A=Bx n=A%9973=A-9973*y=Bx-9973*y 用扩展欧几里德求解 #include<stdio.h> #include<string.h> ...