文件名称:Httpclient使用jar包三合一,基本使用方法
文件大小:361KB
文件格式:RAR
更新时间:2016-06-03 10:58:28
Httpclient codec logging http
Http协议使用封装jar包(commons-codec-1.3.jar、commons-httpclient-3.1.jar、commons-logging-1.1.jar)
简单使用方法:
public static void main(String[] args) {
// String str1 = "http://dev.d-smart.cn/Login";
// http协议路径
String str1 = "";
HttpClient httpClient = new HttpClient();
PostMethod method = new PostMethod(str1);
try {
// 需要添加的header数据
List
【文件预览】:
commons
----commons-httpclient-3.1.jar(298KB)
----commons-codec-1.3.jar(46KB)
----HttpClientTest.java(3KB)
----commons-logging-1.1.jar(52KB)