在之前一段的项目中,使用Java模仿Http Post方式发送参数以及文件,单纯的传递参数或者文件可以使用URLConnection进行相应的处理。

但是项目中涉及到既要传递普通参数,也要传递多个文件(不是单纯的传递XML文件)。在网上寻找之后,发现是使用HttClient来进行响应的操作,起初尝试多次依然不能传递参数和传递文件,后来发现时因为当使用HttpClient时,不能使用request.getParameter()对普通参数进行获取,而要在服务器端使用Upload来进行操作。

HttpClient4.2 jar下载 :http://download.csdn.net/detail/just_szl/4370574

客户端代码:

  1. import java.io.ByteArrayOutputStream;
  2. import java.io.File;
  3. import java.io.IOException;
  4. import java.io.InputStream;
  5. import org.apache.http.HttpEntity;
  6. import org.apache.http.HttpResponse;
  7. import org.apache.http.HttpStatus;
  8. import org.apache.http.ParseException;
  9. import org.apache.http.client.HttpClient;
  10. import org.apache.http.client.methods.HttpPost;
  11. import org.apache.http.entity.mime.MultipartEntity;
  12. import org.apache.http.entity.mime.content.FileBody;
  13. import org.apache.http.impl.client.DefaultHttpClient;
  14. import org.apache.http.util.EntityUtils;
  15. /**
  16. *
  17. * @author <a href="mailto:just_szl@hotmail.com"> Geray</a>
  18. * @version 1.0,2012-6-12
  19. */
  20. public class HttpPostArgumentTest2 {
  21. //file1与file2在同一个文件夹下 filepath是该文件夹指定的路径
  22. public void SubmitPost(String url,String filename1,String filename2, String filepath){
  23. HttpClient httpclient = new DefaultHttpClient();
  24. try {
  25. HttpPost httppost = new HttpPost(url);
  26. FileBody bin = new FileBody(new File(filepath + File.separator + filename1));
  27. FileBody bin2 = new FileBody(new File(filepath + File.separator + filename2));
  28. StringBody comment = new StringBody(filename1);
  29. MultipartEntity reqEntity = new MultipartEntity();
  30. reqEntity.addPart("file1", bin);//file1为请求后台的File upload;属性
  31. reqEntity.addPart("file2", bin2);//file2为请求后台的File upload;属性
  32. reqEntity.addPart("filename1", comment);//filename1为请求后台的普通参数;属性
  33. httppost.setEntity(reqEntity);
  34. HttpResponse response = httpclient.execute(httppost);
  35. int statusCode = response.getStatusLine().getStatusCode();
  36. if(statusCode == HttpStatus.SC_OK){
  37. System.out.println("服务器正常响应.....");
  38. HttpEntity resEntity = response.getEntity();
  39. System.out.println(EntityUtils.toString(resEntity));//httpclient自带的工具类读取返回数据
  40. System.out.println(resEntity.getContent());
  41. EntityUtils.consume(resEntity);
  42. }
  43. } catch (ParseException e) {
  44. // TODO Auto-generated catch block
  45. e.printStackTrace();
  46. } catch (IOException e) {
  47. // TODO Auto-generated catch block
  48. e.printStackTrace();
  49. } finally {
  50. try {
  51. httpclient.getConnectionManager().shutdown();
  52. } catch (Exception ignore) {
  53. }
  54. }
  55. }
  56. /**
  57. * @param args
  58. */
  59. public static void main(String[] args) {
  60. // TODO Auto-generated method stub
  61. HttpPostArgumentTest2 httpPostArgumentTest2 = new HttpPostArgumentTest2();
  62. httpPostArgumentTest2.SubmitPost("http://127.0.0.1:8080/demo/receiveData.do",
  63. "test.xml","test.zip","D://test");
  64. }
  65. }

服务端代码:

  1. public void receiveData(HttpServletRequest request, HttpServletResponse response) throws AppException{
  2. PrintWriter out = null;
  3. response.setContentType("text/html;charset=UTF-8");
  4. Map map = new HashMap();
  5. FileItemFactory factory = new DiskFileItemFactory();
  6. ServletFileUpload upload = new ServletFileUpload(factory);
  7. File directory = null;
  8. List<FileItem> items = new ArrayList();
  9. try {
  10. items = upload.parseRequest(request);
  11. // 得到所有的文件
  12. Iterator<FileItem> it = items.iterator();
  13. while (it.hasNext()) {
  14. FileItem fItem = (FileItem) it.next();
  15. String fName = "";
  16. Object fValue = null;
  17. if (fItem.isFormField()) { // 普通文本框的值
  18. fName = fItem.getFieldName();
  19. //                  fValue = fItem.getString();
  20. fValue = fItem.getString("UTF-8");
  21. map.put(fName, fValue);
  22. } else { // 获取上传文件的值
  23. fName = fItem.getFieldName();
  24. fValue = fItem.getInputStream();
  25. map.put(fName, fValue);
  26. String name = fItem.getName();
  27. if(name != null && !("".equals(name))) {
  28. name = name.substring(name.lastIndexOf(File.separator) + 1);
  29. //                      String stamp = StringUtils.getFormattedCurrDateNumberString();
  30. String timestamp_Str = TimeUtils.getCurrYearYYYY();
  31. directory = new File("d://test");
  32. directory.mkdirs();
  33. String filePath = ("d://test")+ timestamp_Str+ File.separator + name;
  34. map.put(fName + "FilePath", filePath);
  35. InputStream is = fItem.getInputStream();
  36. FileOutputStream fos = new FileOutputStream(filePath);
  37. byte[] buffer = new byte[1024];
  38. while (is.read(buffer) > 0) {
  39. fos.write(buffer, 0, buffer.length);
  40. }
  41. fos.flush();
  42. fos.close();
  43. map.put(fName + "FileName", name);
  44. }
  45. }
  46. }
  47. } catch (Exception e) {
  48. System.out.println("读取http请求属性值出错!");
  49. //          e.printStackTrace();
  50. logger.error("读取http请求属性值出错");
  51. }
  52. // 数据处理
  53. try {
  54. out = response.getWriter();
  55. out.print("{success:true, msg:'接收成功'}");
  56. out.close();
  57. } catch (IOException e) {
  58. e.printStackTrace();
  59. }
  60. }

http://blog.csdn.net/Just_szl/article/details/7659347

HttpClient通过Post上传文件(转)的更多相关文章

  1. WebAPI通过multipart/form-data方式同时上传文件以及数据(含HttpClient上传Demo)

    简单的Demo,用于了解WebAPI如何同时接收文件及数据,同时提供HttpClient模拟如何同时上传文件和数据的Demo,下面是HttpClient上传的Demo界面 1.HttpClient部分 ...

  2. [转]httpclient 上传文件、下载文件

    用httpclient4.3 post方式推送文件到服务端  准备:httpclient-4.3.3.jar:httpcore-4.3.2.jar:httpmime-4.3.3.jar/** * 上传 ...

  3. 转 Android网络编程之使用HttpClient批量上传文件 MultipartEntityBuilder

    请尊重他人的劳动成果,转载请注明出处:Android网络编程之使用HttpClient批量上传文件 http://www.tuicool.com/articles/Y7reYb 我曾在<Andr ...

  4. HttpClient MultipartEntityBuilder 上传文件

    文章转载自: http://blog.csdn.net/yan8024/article/details/46531901 http://www.51testing.com/html/56/n-3707 ...

  5. HttpClient 测试web API上传文件实例

    1.使用HttpClient 测试上传文件并且设置header信息: using Lemon.Common; using Newtonsoft.Json; using System; using Sy ...

  6. Java使用HttpClient上传文件

    Java可以使用HttpClient发送Http请求.上传文件等,非常的方便 Maven <dependency> <groupId>org.apache.httpcompon ...

  7. HttpClient上传文件

    1.上传客户端代码: public static void upload() { CloseableHttpClient httpclient = HttpClients.createDefault( ...

  8. 【httpclient-4.3.1.jar】httpclient发送get、post请求以及携带数据上传文件

    1.发送get.post携带参数以及post请求接受JSON数据: package cn.qlq.utils; import java.io.BufferedReader; import java.i ...

  9. .Net使用HttpClient以multipart/form-data形式post上传文件及其相关参数

    前言: 本次要讲的是使用.Net HttpClient拼接multipark/form-data形式post上传文件和相关参数,并接收到上传文件成功后返回过来的结果(图片地址,和是否成功).可能有很多 ...

随机推荐

  1. 本地预览图片html和js例子

    本地预览图片html和js例子,直接上代码吧. <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml" ...

  2. Monyer.cn黑客小游戏

    花了一天的时间,Monyer给大家带来了一个有趣的东东——拥有15个关卡的黑客小游戏. 入口http://monyer.com/game/game1 因为一直以来都是大家跟我一起学习网络技术嘛,所以这 ...

  3. C++ 中引用与指针的区别

    1.引用只是变量的一个别名,并不占用内存空间,而指针是一个变量,里面保存着被指向的变量在内存中的地址: 2 引用只能在定义时被初始化一次,之后不可变,而指针可变: 3 引用没有 const,指针有 c ...

  4. informatica 常见问题及解决方案

    本文对于informatica使用过程中产生的问题及解决方案做总结,持续更新中... 1.partitioning option license required to run sessions wi ...

  5. Java中关于 BigDecimal 的一个导致double精度损失的"bug"

    背景 在博客 恶心的0.5四舍五入问题 一文中看到一个关于 0.5 不能正确的四舍五入的问题.主要说的是 double 转换到 BigDecimal 后,进行四舍五入得不到正确的结果: public ...

  6. hping3

    [root@zxserver104 ~]# hping3 -c -d -S -w -p --flood --rand-source 115.236.6x.19x 1. hping3 = 应用程序二进制 ...

  7. webstorm 注册码

    User Name: EMBRACE License Key: ===== LICENSE BEGIN ===== 24718-12042010 00001h6wzKLpfo3gmjJ8xoTPw5m ...

  8. Centos Ping不通外网

    安装完成Vm,Centos6.5,设置了网络: 1.VM虚拟网络,采用桥接模式. 2.Centos里各种 设置ifcfg-eth0中的GETWAY,ADDIP等等 vim /etc/sysconfig ...

  9. function [ binary,decimal ] = num2binary16( number )

    function [ binary,decimal ] = num2binary16( number ) %The IEEE 754 standard specifies a binary16 as ...

  10. 1.素数判定(如何输出\n,\t,不用关键字冲突)

    题目描述 Description 质数又称素数.指在一个大于1的自然数中,除了1和此整数自身外,不能被其他自然数整除的数. 素数在数论中有着很重要的地位.比1大但不是素数的数称为合数.1和0既非素数也 ...