在 Java 中使用 Jersey 我有一个响应对象
Client c=Client.create();
WebResource r = c.resource("http://example.com/path");
MultivaluedMap<String, String> params = new MultivaluedMapImpl();
params.add("param1", value);
r=r.path(getQualifiersByPromoServicePath).queryParams(params);
ClientResponse response = r.accept(MediaType.APPLICATION_JSON_TYPE).get(ClientResponse.class);
如何获取用于发出请求的 url?(出于调试目的)即我想获取字符串“http://example.com/path?param1= value ”?