HttpClient 시 뮬 레이 션 로그 인, 세 션 유지 및 후속 작업
2901 단어 자바
package cc.unmi.httpclient;
import org.apache.commons.httpclient.Cookie;
import org.apache.commons.httpclient.HttpClient;
import org.apache.commons.httpclient.NameValuePair;
import org.apache.commons.httpclient.cookie.CookiePolicy;
import org.apache.commons.httpclient.methods.GetMethod;
import org.apache.commons.httpclient.methods.PostMethod;
import org.junit.Test;
public class HttpClientLogin {
public static void main(String[] args){
// Url
String loginUrl = "http://localhost/unmi/login.html";
// Url
String dataUrl = "http://localhost/unmi/user_info.html?userid=123456";
HttpClient httpClient = new HttpClient();
// , Post Get
PostMethod postMethod = new PostMethod(loginUrl);
// , ,
NameValuePair[] data = {
new NameValuePair("username", "Unmi"),
new NameValuePair("password", "123456"),
new NameValuePair("code", "anyany")
};
postMethod.setRequestBody(data);
try {
// HttpClient Cookie,
httpClient.getParams().setCookiePolicy(CookiePolicy.BROWSER_COMPATIBILITY);
httpClient.executeMethod(postMethod);
// Cookie
Cookie[] cookies=httpClient.getState().getCookies();
String tmpcookies= "";
for(Cookie c:cookies){
tmpcookies += c.toString()+";";
}
//
GetMethod getMethod = new GetMethod(dataUrl);
// cookie
getMethod.setRequestHeader("cookie",tmpcookies);
// PostMethod/GetMethod
// ,referer ,UA ,
postMethod.setRequestHeader("Referer", "http://unmi.cc");
postMethod.setRequestHeader("User-Agent","Unmi Spot");
httpClient.executeMethod(getMethod);
// ,
String text = getMethod.getResponseBodyAsString();
System.out.println(text);
} catch (Exception e) {
e.printStackTrace();
}
}
}
Basic 인증 의 간단 한 코드 가이드, 아직 직접 시도 하지 않 았 습 니 다:
HttpClient client = new HttpClient();
// 1
client.getState().setCredentials(
new AuthScope("unmi.cc", 80, AuthScope.ANY_REALM),
new UsernamePasswordCredentials("username", "password")
);
// 2
client.getParams().setAuthenticationPreemptive(true);
// 3
GetMethod getMothod = new GetMethod("http://unmi.cc/twitter");
// 4
getMothod.setDoAuthentication( true );
// 5
int status = client.executeMethod( getMothod );
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 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에 따라 라이센스가 부여됩니다.