httpClient学习笔记1

 

客服端以post请求输入xml的输入流,来到服务器端,服务器端接到输入流,进行处理,处理完毕后,返回xml信息的返回输出流,来告诉对方成功与否。

htppClient的使用至少需要commons-httpclient-3.1.jar,commons-logging-1.0.4.jar,commons-codec-1.3.jar三个Apache开源项目jar包的支持。(jar的版本可以不同,我用的是如上三个。)

 

模拟客户端代码:

package httpClientDemo;
import java.io.File;

import org.apache.commons.httpclient.HttpClient;
import org.apache.commons.httpclient.NameValuePair;
import org.apache.commons.httpclient.methods.FileRequestEntity;
import org.apache.commons.httpclient.methods.PostMethod;
import org.apache.commons.httpclient.methods.RequestEntity;


public class HttpClientTest {
   private static final String  LOGON_SITE = "localhost" ;
   private static final int     LOGON_PORT = 8080;


    @SuppressWarnings("deprecation")
  public static void main(String[] args) throws Exception {
        File input = new File("d:\\test.xml");
        PostMethod post = new PostMethod("/Mytest/servlet/abc.do");
       NameValuePair name = new NameValuePair( "name" , "zhangjinping" );
       NameValuePair pass = new NameValuePair( "password" , "123456" );
        post.setRequestBody( new NameValuePair[]{name,pass});

        HttpClient client = new HttpClient();
        client.getHostConfiguration().setHost(LOGON_SITE, LOGON_PORT);
  
       
        
                RequestEntity entity = new FileRequestEntity(input, "text/xml; charset=utf-8");
              //  post.setRequestHeader( "Content-type" , "text/xml; charset=utf-8" );
                post.setRequestEntity(entity);
                try {
        
                   int result = client.executeMethod(post);

                   System.out.println("Response status code: " + result);

                   System.out.println("Response body: ");
        
                   System.out.println(post.getResponseBodyAsString());
        
                } finally {
        
                    post.releaseConnection();
        
                }
              

      /*  // 设置请求的内容直接从文件中读取
        post.setRequestBody( new FileInputStream(input));
        if (input.length() < Integer.MAX_VALUE)
           post.setRequestContentLength(input.length());
        else
           post.setRequestContentLength(EntityEnclosingMethod.CONTENT_LENGTH_CHUNKED);
 
        // 指定请求内容的类型
    
      
        int result =client.executeMethod(post);
        System.out.println( "Response status code: " + result);
        System.out.println( "Response body: " );
        System.out.println(post.getRequestCharSet());
        System.out.println(post.getResponseBodyAsString());
        post.releaseConnection();
     } */
 
    }

}

 

 

服务器端代码:

 

package web;

import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.util.List;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import pojo.Student;
import bo.CreateBD;

import common.CreateXMLUtil;

public class AjaxTestServlet extends HttpServlet {

 /**
  * Constructor of the object.
  */
 public AjaxTestServlet() {
  super();
 }

 /**
  * Destruction of the servlet. <br>
  */
 public void destroy() {
  super.destroy(); // Just puts "destroy" string in log
  // Put your code here
 }

 /**
  * The doGet method of the servlet. <br>
  *
  * This method is called when a form has its tag value method equals to get.
  *
  * @param request the request send by the client to the server
  * @param response the response send by the server to the client
  * @throws ServletException if an error occurred
  * @throws IOException if an error occurred
  */
 public void doGet(HttpServletRequest request, HttpServletResponse response)
   throws ServletException, IOException {
           doPost(request, response);
 }

 /**
  * The doPost method of the servlet. <br>
  *
  * This method is called when a form has its tag value method equals to post.
  *
  * @param request the request send by the client to the server
  * @param response the response send by the server to the client
  * @throws ServletException if an error occurred
  * @throws IOException if an error occurred
  */
 public void doPost(HttpServletRequest request, HttpServletResponse response)
   throws ServletException, IOException {
  
  System.out.println(">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>.");
  String str = request.getParameter("testPost");
  String name= request.getParameter("name");
  String password = request.getParameter("password");
  System.out.println(name+"  "+password);
  @SuppressWarnings("unused")
  StringBuffer sb = new StringBuffer();
  InputStream is= request.getInputStream();
  
  InputStreamReader isr = new InputStreamReader(is);
  BufferedReader br = new BufferedReader(isr);
  while(true){
        str = br.readLine();
        if(str!=null)
         sb.append(str);
        if(str==null)
         break;
   }
  
  System.out.println(sb.toString());
  
  response.setContentType("application/xml"); //application/xml代表的是XML形式返回
  response.setHeader("Cache-Control", "no-cache"); //设置不缓存
       
  List<Student> students = CreateBD.getData();
  //组织返回数据
  String xml=CreateXMLUtil.getClassXML(students, "students");

  PrintWriter pw=null;
  try {
  //获取页面写入器
  pw=response.getWriter();
  } catch (IOException e) {
  e.printStackTrace();
  }
  pw.write(xml);
  pw.flush();
  pw.close();
 

 }

 /**
  * Initialization of the servlet. <br>
  *
  * @throws ServletException if an error occurs
  */
 public void init() throws ServletException {
  // Put your code here
 }

}

 

 

 

 

Apache官方:httpClient 详解:

http://hc.apache.org/httpclient-3.x/

Apache官方:httpClient使用xmlPOST的举例代码:http://svn.apache.org/viewvc/httpcomponents/oac.hc3x/trunk/src/examples/

转载于:https://www.cnblogs.com/alaricblog/p/3278275.html

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

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

相关文章

JAVA基础学习预科部分 (Markdown + dox)2021/2/22持续更新中

javaSE从 2021/02/22开始&#xff0c;预计到2021/02/28&#xff0c;原本预计的算法题解先鸽一下。 -博客Blog的重要性 & Markdown语法 基础markdown语法 标题&#xff0c; 直接使用 ‘#’&#xff0c;一级二级…五级字体&#xff0c;斜体(左右个一个∗*∗)&#xff0c;加…

元素(块、行内、行内块

块元素的特点 1.支持所有样式 2.块级元素 独占一行 3.块级元素默认宽度和父元素一样 常用块元素块级元素 一般 div p ol ul h1-h6 li dl dt dd 等都是 初始化(样式重置) 1.实际开发中&#xff0c;我们会把这些默认的样式在样式定义开头清除掉&#xff0c;清除掉这些默认样式&…

LeetCode 1031. 两个非重叠子数组的最大和(一次遍历,要复习)*

文章目录1. 题目2. 解题2.1 暴力枚举2.2 一次遍历1. 题目 给出非负整数数组 A &#xff0c;返回两个非重叠&#xff08;连续&#xff09;子数组中元素的最大和&#xff0c;子数组的长度分别为 L 和 M。&#xff08;这里需要澄清的是&#xff0c;长为 L 的子数组可以出现在长为…

资料合集

cocos2d-x http://www.microoh.com/index.php 杂谈 http://www.yixieshi.com/ as3读excel https://github.com/childoftv/as3-xlsx-reader 提问 http://stackoverflow.com/转载于:https://www.cnblogs.com/chenhongyu/p/3282918.html

Java入门篇 2021/02/22

Java入门篇 2021/02/22 Java的三大版本 java三大版本主要包括 JavaSE, JavaME, JavaEE&#xff0c;其中现如今的JavaME已经是很少见了&#xff0c;JavaSE是JavaEE的基础。 JDK、JER、JVM三个关系 JDK, JRE, JVM具体的关系可以参照下图&#xff0c;是名副其实的包含关系。 J…

iOS 开发者必不可少的 75 个工具

如果你去到一位熟练的木匠的工作室&#xff0c;你总是能发现他/她有一堆工具来完成不同的任务。软件开发同样如此。你可以从软件开发者如何使用工具中看出他水准如何。有经验的开发者精于使用工具。对你目前所使用的工具不断研究&#xff0c;同时了解一些替代品的使用&#xff…

LeetCode 911. 在线选举(二分查找)

文章目录1. 题目2. 解题1. 题目 在选举中&#xff0c;第 i 张票是在时间为 times[i] 时投给 persons[i] 的。 现在&#xff0c;我们想要实现下面的查询函数&#xff1a; TopVotedCandidate.q(int t) 将返回在 t 时刻主导选举的候选人的编号。 在 t 时刻投出的选票也将被计入…

定位position(前面布局无法实现

文档流 文档流&#xff0c;是指盒子按照html标签编写的顺序依次从上到下&#xff0c;从左到右排列&#xff0c;块元素占一行&#xff0c;行内元素在一行之内从左到右排列&#xff0c;先写的先排列&#xff0c;后写的排在后面&#xff0c;每个盒子都占据自己的位置。 定位&…

java 流程控制篇 2021/02/26持续更新中

1. 用户交互Scanner 1.1 简单的Scanner用法 首先&#xff0c;需要 import java.util.Scanner其次&#xff0c;需要创建一个 Scanner 类的对象&#xff0c; Scanner s new Scanner(System.in);通过调用Scanner对象的方法来完成&#xff0c; 一定要注意有开有关&#xff0c;最…

从Ubuntu12.04LTS到Foreda19再到Foreda8

装Ubuntu的初衷是以为它能识别我的PCI无线网卡&#xff0c;但装了两遍没有做到。 昨天在Ubuntu装jdk7&#xff0c;其过程与正常Linux安装jdk差别不小&#xff0c;有点背离的意思。另外VI的用法也和正常Unix/Linux不一样&#xff0c;有点别扭。 昨晚又下了一个Foreda19&#xff…

04.卷积神经网络 W1.卷积神经网络(作业:手动/TensorFlow 实现卷积神经网络)

文章目录作业1&#xff1a;实现卷积神经网络1. 导入一些包2. 模型框架3. 卷积神经网络3.1 Zero-Padding3.2 单步卷积3.3 卷积神经网络 - 前向传播4. 池化层5. 卷积神经网络 - 反向传播5.1 卷积层反向传播5.1.1 计算 dA5.1.2 计算 dW5.1.3 计算 db5.2 池化层 - 反向传播5.2.1 最…

tabel表格制作及操作

表格的基本用法 l table表示表格开始表格结束 l tr表示表格中的行标签一个表格中有多少行就应该书写多少对tr标签 l td表示表格中的单元格标签一行中有多少个单元格就应该书写多少对td标签 l表格中所有的内容都必须在放置在td标签里面 也就是说只有td标签才能存放内容 l t…

html的实战性介绍

Html 简介 超文本结构语言 html并非一种编程语言&#xff0c; 而是一种描述超文本文档的标记语言&#xff0c;用html编写的超文本文档成为html文档。 超文本文档指的是&#xff0c;可以加入图片、声音、动画、影视等内容&#xff0c;并可以利用超链接方便的从一个文件跳转到网…

前端:background背景图

background背景图 属性解释 background属性是css中应用比较多&#xff0c;且比较重要的一个属性&#xff0c;它是负责给盒子设置背景图片和背景颜色的&#xff0c;background是一个复合属性&#xff0c;它可以分解成如下几个设置项&#xff1a; background-color 设置背景颜色…

LeetCode 808. 分汤(动态规划)

文章目录1. 题目2. 解题1. 题目 有 A 和 B 两种类型的汤。一开始每种类型的汤有 N 毫升。有四种分配操作&#xff1a; 提供 100ml 的汤A 和 0ml 的汤B。提供 75ml 的汤A 和 25ml 的汤B。提供 50ml 的汤A 和 50ml 的汤B。提供 25ml 的汤A 和 75ml 的汤B。 当我们把汤分配给某…

JavaScript入门介绍 1 2021/02/27

一、JavaScript简介一 1.1 javascript 简介 JavaScript是Web页面中的一种脚本编程语言&#xff0c;可用于Web系统的客户端和服务器端编程前身叫做LiveScript&#xff0c;是Netscape公司开发的脚本语言。在Sun公司推出Java语言后&#xff0c; Netscape公司和Sun公司于1995年一…

css权重值

CSS权重指的是样式的优先级&#xff0c;有两条或多条样式作用于一个元素&#xff0c;权重高的那条样式对元素起作用,权重相同的&#xff0c;后写的样式会覆盖前面写的样式。 权重的等级 可以把样式的应用方式分为几个等级&#xff0c;按照等级来计算权重 !important&#xf…

LeetCode 848. 字母移位(前缀和+取模)

文章目录1. 题目2. 解题1. 题目 有一个由小写字母组成的字符串 S&#xff0c;和一个整数数组 shifts。 我们将字母表中的下一个字母称为原字母的 移位&#xff08;由于字母表是环绕的&#xff0c; ‘z’ 将会变成 ‘a’&#xff09;。 例如&#xff0c;shift(a) b&#xff…

jsp:setProperty

类声明&#xff1a; package test; public class Student { private int age; public int getAge() { return age; } public void setAge(int age) { this.age age; } } jsp代码&#xff1a; <jsp:useBean id"student"…

第一章、OS引论1

1.1 操作系统的目标和作用 1.1.1 操作系统的目标 计算机上安装操作系统&#xff0c;主要目标是&#xff1a;方便性、有效性、可扩充性和开放性。 方便性&#xff1a;方便用户&#xff0c;使计算机变得易学易用有效性&#xff1a;提高系统资源(资源指CPU(处理机),存储器,文件(…