if (code == 302) {
//登陆成功了, 获取成功的重定向的页面地址
Header[] locations = response.getHeaders("Location");
String relurl = locations[0].getValue();
//注意 : 如果把下面的 relurl 误写成 首页地址(indexurl) 就会报标题这样的错
// indexurl="http://home.woshidaniu.com"+relurl **注意**
relurl="http://home.woshidaniu.com"+relurl;
希望对你有所帮助。。。