在下面的示例代码中,什么时候 uri 不等于 url?
HttpClient client = new DefaultHttpClient();
String url = "http://domain/path1/path2"
HttpGet get = new HttpGet(toFetchURL);
HttpResponse response = client.execute(get);
String uri = get.getURI.toString();
if (!uri.equals(url)) {
// when would this happen?
// some logic
}