1. 基本
2 .重定向
3. 登陆
int statuscode = post.getStatusCode();
if ((statuscode == HttpStatus.SC_MOVED_TEMPORARILY) ||
(statuscode == HttpStatus.SC_MOVED_PERMANENTLY) ||
(statuscode == HttpStatus.SC_SEE_OTHER) ||
statuscode == HttpStatus.SC_TEMPORARY_REDIRECT))
//读取新的URL地址
Header header = post.getResponseHeader("location");
if (header != null)
}