我使用来自 apache.http.client 的 uribuilder 对象来创建 url
例如:www.xxx.com/#/path/?query=123
我的代码如下
URIBuilder uriBuilder = new URIBuilder();
uriBuilder.setScheme("http");
uriBuilder.setHost(host);
uriBuilder.setFragment(path);
uriBuilder.addParameter(query,123);
但结果是 www.xxx.com/?query=123#path,我怎样才能得到 uribuilder 或其他 java 工具库所期望的正确 url。