如何从HttpPost获取返回URL。我正在使用这个:
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost(SERVER_ADDRESS);
List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(2)
blablabla adding pairs...
HttpResponse httpResponse = httpclient.execute(httppost);
我要求的页面将我引用另一个,我想知道它的URL
由于