タイプの 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
# をエンコードせずに目的の URL を取得する方法。