zoukankan      html  css  js  c++  java
  • servlet之间的数据传递使用POST方法

    相关jar包:

    commons-httpclient.jar

    PostMethod post = new PostMethod(url);
    RequestEntity entity = new FileRequestEntity(inputFile, "text/xml; charset=ISO-8859-1");
    post.setRequestEntity(entity);
    HttpClient httpclient = new HttpClient();
    int result = httpclient.executeMethod(post);

    用PostMethod 模拟http post请求,需要解决传递字符串,文件等需求。
    httpclient对此,提供了对应实现,实现方法关键在:RequestEntity。
    示例:

    RequestEntity requestEntity = newStringRequestEntity(text);  
    post.setRequestEntity(requestEntity);  

    示例中,是传递一个普通字符型参数。
    这个方法代替了以前直接设置Request body。

    RequestEntity是一个接口,有很多实现:
    ByteArrayRequestEntity, FileRequestEntity, InputStreamRequestEntity, MultipartRequestEntity, StringRequestEntity
    基本上从名字上就可以直接看出功能,可以从字符串,流,文件,字节数组中产生request body。

    还有更复杂的Multipart,就是夹杂文件和普通字段的提交。
    示例如下:

    Part[] parts = {new StringPart("source", "695132533"), new StringPart("status", URLEncoder.encode(status, "utf-8")), filePart};
    postMethod.setRequestEntity(new MultipartRequestEntity(parts, postMethod.getParams()));


  • 相关阅读:
    总结的反爬虫手段(持续更新)
    爬虫类编程笔记导航
    技术开发流程小公司
    敏捷开发学习笔记(一)
    .NET Framework各版本比较
    linux shell 之 cut
    Hive insert overwrite 出现错误解决方法
    hive join
    linux shell 之 grep
    hive实现not in
  • 原文地址:https://www.cnblogs.com/dqsweet/p/4927736.html
Copyright © 2011-2022 走看看