자바 프로그램 시 뮬 레이 션 로그 인 네트워크
2152 단어 자바httpclient아 날로 그 로그 인
package cn.com.talkweb.http.client;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import org.apache.http.HttpResponse;
import org.apache.http.NameValuePair;
import org.apache.http.client.ClientProtocolException;
import org.apache.http.client.HttpClient;
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.impl.client.DefaultHttpClient;
import org.apache.http.message.BasicNameValuePair;
import org.apache.http.util.EntityUtils;
public class Login_renren
{
public static void main(String[] args) throws ClientProtocolException,
IOException
{
// TODO Auto-generated method stub
String loginurl="http://www.renren.com/PLogin.do";
String username="[email protected]";
String password="123";
System.out.println(Login_renren.posturl
(loginurl,username,password));
}
public static String posturl(String loginurl,String username,String
password) throws ClientProtocolException, IOException
{
HttpClient httpclient1 = new DefaultHttpClient();
HttpPost httppost = new HttpPost(loginurl);
List<NameValuePair> formparams = new ArrayList<NameValuePair>();
formparams.add(new BasicNameValuePair("email",username));
formparams.add(new BasicNameValuePair("password",password));
UrlEncodedFormEntity entity = new UrlEncodedFormEntity(formparams,
"utf-8");
httppost.setEntity(entity);
String str="";
HttpClient httpclient2=null;
try {
HttpResponse response1 = httpclient1.execute(httppost);
String login_success=response1.getFirstHeader
("Location").getValue();//
HttpGet httpget = new HttpGet(login_success);
httpclient2 = new DefaultHttpClient();
HttpResponse response2=httpclient2.execute(httpget);
str=EntityUtils.toString(response2.getEntity());
httppost.abort();
httpget.abort();
} finally
{
httpclient1.getConnectionManager().shutdown();
httpclient2.getConnectionManager().shutdown();
}
return str;
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.