日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

HttpClient登陆开心网

發布時間:2023/12/18 编程问答 20 豆豆
生活随笔 收集整理的這篇文章主要介紹了 HttpClient登陆开心网 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

周末沒事,研究了下HttpClient登陸kaixin網,網上文章很多,但所用HttpClient版本比較舊,將其代碼更新到最新:

?

?

package com.cicc;

import java.util.ArrayList;
import java.util.List;

import org.apache.http.Header;
import org.apache.http.HttpResponse;
import org.apache.http.NameValuePair;
import org.apache.http.client.HttpClient;
import org.apache.http.client.ResponseHandler;
import org.apache.http.client.entity.UrlEncodedFormEntity;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.cookie.Cookie;
import org.apache.http.impl.client.BasicResponseHandler;
import org.apache.http.impl.client.DefaultHttpClient;
import org.apache.http.message.BasicNameValuePair;
import org.apache.http.protocol.HTTP;

public class LoginKaixin {
?private static final String LOGON_SITE = "http://www.kaixin001.com/";
?private static final int LOGON_PORT = 80;
?
?// The HttpClient is used in one session
?private static HttpResponse response;
?private static DefaultHttpClient httpclient = new DefaultHttpClient();
?public static void main(String[] args)throws Exception {
??LoginKaixin kaixin=new LoginKaixin();
??kaixin.printText();
?}
private static String url="http://www.kaixin001.com/login/login.php";
?private boolean login() {
??HttpPost httpost = new HttpPost(url);
??// All the parameters post to the web site
??BasicNameValuePair ie = new BasicNameValuePair("User-Agent","Mozilla/4.0 (compatible; MSIE 6.0; Windows 2000)");??
??BasicNameValuePair url = new BasicNameValuePair("url", "/home/");
??BasicNameValuePair username = new BasicNameValuePair("email","xxxxx@163.com");
??BasicNameValuePair password = new BasicNameValuePair("password", "yourpassword");
??List<NameValuePair> nvps = new ArrayList<NameValuePair>();
??nvps.add(ie);
??nvps.add(url);
??nvps.add(username);
??nvps.add(password);

??try {
???httpost.setEntity(new UrlEncodedFormEntity(nvps, HTTP.UTF_8));
???response = httpclient.execute(httpost);
??} catch (Exception e) {
???e.printStackTrace();
???return false;
??} finally {
???httpost.abort();
??}
??return true;
?}
?
?private String getRedirectLocation() {
??Header locationHeader = response.getFirstHeader("Location");
??if (locationHeader == null) {
???return null;
??}
??return locationHeader.getValue();
?}

?private String getText(String redirectLocation) {
//??http://www.kaixin001.com/home/?uid=6254552
??HttpGet httpget = new HttpGet("http://www.kaixin001.com%22+redirectlocation/);
??// Create a response handler
??ResponseHandler<String> responseHandler = new BasicResponseHandler();
??String responseBody = "";
??try {
???responseBody = httpclient.execute(httpget, responseHandler);
??} catch (Exception e) {
???e.printStackTrace();
???responseBody = null;
??} finally {
???httpget.abort();
???httpclient.getConnectionManager().shutdown();
??}
??return responseBody;
?}

?public void printText() {
??if (login()) {
???String redirectLocation = getRedirectLocation();
???if (redirectLocation != null) {
????System.out.println(getText(redirectLocation));
???}
??}
?}
}

轉載于:https://www.cnblogs.com/jjj250/archive/2010/07/25/1784899.html

總結

以上是生活随笔為你收集整理的HttpClient登陆开心网的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。