-
大小: 869KB文件类型: .zip金币: 2下载: 0 次发布日期: 2021-05-24
- 语言: Java
- 标签: httpclient
资源简介
httpclient模拟登陆代码以及相关的jar包

代码片段和文件信息
package com.broada.httpclient.recordsystem;
import org.apache.commons.httpclient.HttpClient;
import org.apache.commons.httpclient.NameValuePair;
import org.apache.commons.httpclient.methods.GetMethod;
import org.apache.commons.httpclient.methods.PostMethod;
/**
* 通过模拟登录获取录播系统的HTML页面
*
* @author Administrator
* Create By 2014年5月26日 上午9:52:29
*/
public class RecordingSystemAnalogLogon {
public static String getHtmlByHttpClient(String usernameString password) {
String html =““;
try {
// COSS服务地址
String cossServer = “http://10.253.135.212/login“;
HttpClient client = new HttpClient();
// 设置模拟登录页面的参数
NameValuePair[] nameValuePairs =
{ new NameValuePair(“username“ username)
new NameValuePair(“password“ password) };
// Post提交登录验证的页面
PostMethod method = new PostMethod(cossServer);
method.setRequestBody(nameValuePairs);
client.executeMethod(method);
String url = “http://10.253.135.212/room“;
GetMethod get = new GetMethod(url);
client.executeMethod(get);
html = get.getResponseBodyAsString();
} catch (Exception e) {
e.printStackTrace();
}
return html;
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2014-06-05 16:32 httpclient模拟登陆\
目录 0 2014-06-05 16:32 httpclient模拟登陆\com\
目录 0 2014-06-05 16:32 httpclient模拟登陆\com\broada\
目录 0 2014-06-05 16:32 httpclient模拟登陆\com\broada\httpclient\
目录 0 2014-06-05 16:32 httpclient模拟登陆\com\broada\httpclient\recordsystem\
文件 1236 2014-06-05 11:36 httpclient模拟登陆\com\broada\httpclient\recordsystem\RecordingSystemAnalogLogon.java
目录 0 2014-06-05 16:32 httpclient模拟登陆\lib\
文件 288098 2014-06-05 11:31 httpclient模拟登陆\lib\HtmlParser.jar
文件 232771 2014-06-05 11:31 httpclient模拟登陆\lib\commons-codec-1.6.jar
文件 305001 2014-06-05 11:31 httpclient模拟登陆\lib\commons-httpclient-3.1.jar
文件 109043 2014-06-05 11:31 httpclient模拟登陆\lib\commons-io-1.4.jar
文件 62050 2014-06-05 11:31 httpclient模拟登陆\lib\commons-logging-1.1.3.jar
相关资源
- commons-codec-1.3.jar和commons-httpclient-3.0
- Java HttpClient 4.x Jar包
- commons-httpclient-3.0
- apache httpclient jar包
- httpclient-4.2.1.jar全部架包
- HttpClient配置SSL绕过https证书
- Android网络请求
- httpclient 相关的 3个jar包(commons-http
- httpclient 全部JAR包
- java httpclient https或http及文件中转上传
- java模拟淘宝登录源码请看评论,酌情
- java 调用webservice使用HttpClient和XFire两
- android HttpClient jar包
- HttpClient方式实现Android平台与Apache服务
- httpclient4.2.5 jar 还有关于他的依赖包
- Android使用HttpClient和HttpsUrlConnection两种
- httpclient需要的各种jar包
- java使用httpClient模拟淘宝登陆
- httpclient 4.4 jar包
- HttpClient4.2.5
- HttpClient-4.5.6
- org.apache.http的jar包是使用HttpClient发送
- httpcomponents-client-4.5.4
- httpclient-4.5.3完整jar包
- httpclient 需要的各种jar包 全版本
- httpclient爬取美图
- Android-async-http-1.4.9.jar
- Java中Httpclient需要的jar包(httpclient.
- OkHttpClientUtil封装类
- java使用HttpClient通过url文件到本地
评论
共有 条评论