首页 > 代码库 > 第一次调用从server获取Cookie
第一次调用从server获取Cookie
System.setProperty("javax.net.ssl.trustStore", certPath);
public String getCookieString(String userId, String pwd) throws Exception {
HttpClient httpclient = HttpClientBuilder.create().build();
HttpPost httpPost = new HttpPost(LONGIN_URL);
httpPost.setHeader("Content-Type", "application/x-www-form-urlencoded");
httpPost.setEntity(getParam(userId, pwd));
HttpResponse response = httpclient.execute(httpPost);
return _getCookieString(response.getAllHeaders());
}
private String _getCookieString(Header[] h) {
String cookieFromServer = "";
for (Header ibh : h) {
System.out.print(ibh.getName());
if (ibh.getName().equals("Set-Cookie")) {
cookieFromServer = cookieFromServer + ibh.getValue();
}
}
return cookieFromServer;
}
private StringEntity getParam(String userName, String pwd) {
String aa = "username=" + userName + "&password=" + pwd + "&requestedHash=";
StringEntity requestEntity = new StringEntity(aa, ContentType.APPLICATION_FORM_URLENCODED);
return requestEntity;
}
第一次调用从server获取Cookie