我正在尝试构建以下 URL:
https://console.aws.amazon.com/elasticmapreduce/home?region=us-east-1#cluster-details:j-1IGU6572KT6LB
我不确定如何包含:j-1IGU6572KT6LB
. 当我包含 :` 时,它会被编码。想看看能不能避免。
这就是我所拥有的:
UriBuilder
.fromPath("console.aws.amazon.com")
.path("elasticmapreduce")
.path("home")
.queryParam("region","us-east-1")
.fragment("cluster-details")
.port(-1)
.scheme("https")