标签: java httpclient
当我使用HttpMethod.setFollowRedirects(true)时,如何获取Http请求的最终URL。我正在使用apache Httpclient - GetMethod。
HttpMethod.setFollowRedirects(true)
GetMethod
答案 0 :(得分:0)
您是否尝试过method.getURI(),或按照Stephen的建议 - method.getPath()?
method.getURI()
method.getPath()