次のURIを構築したい -
https://10.112.88.182:8443/Vehicle/services/socialService/login
...
Builder builder = new Builder();
builder.scheme(Constants.URL_SCHEME);
builder.authority(host);
builder.appendPath(service + "/" +method);
return builder.build().toString();
どこ
URL_SCHEME
-https
host
-10.112.88.182:8443/Vehicle/services/
service
-socialService
method
-login
このコードを実行すると、次の URI を取得します -
https://10.112.88.182%3A8443%2FVehicle%2Fservices%2F/socialService%2Flogin
/
に置き換えられ%2F
、次の:
ように置き換えられます%3A