Java:在查询参数之前使用片段构建URI

时间:2016-09-17 11:57:28

标签: java url encoding uribuilder

我希望构建一个类型的URI: https://example.com/index.html#db/report/csv?token=4cec23a8a07b63c1ed74&time=1473951700000&name=GA

但我正在尝试产生不正确的结果:

UriBuilder.fromUri("https://example.com").path("index.html#db/report/csv").queryParam("token", "4cec23a8a07b63c1ed74").queryParam("time", "1473951700000").queryParam("name", "GA").build();

以上是编码#并导致

https://example.com/index.html%23db/report/csv?token=4cec23a8a07b63c1ed74&time=1473951700000&name=GA

如何不编码#并仍然获得所需的网址。

0 个答案:

没有答案