我尝试过这两种方法:
builder.scheme("http").authority("10.0.2.2:28642").appendPath("api").appendPath("DeliveryItems").appendPath("PostArgsAndXMLFileAsStr").
builder.scheme("http").authority("10.0.2.2:28642/api").appendPath("DeliveryItems").appendPath("PostArgsAndXMLFileAsStr").
...虽然由于其他原因代码还没有工作,我想知道哪条路是对的:
.authority("10.0.2.2:28642").appendPath("api").
-OR:
authority("10.0.2.2:28642/api").
答案 0 :(得分:1)
"权威" URI的一部分标识谁负责指定路径部分的语义。这通常是主机/端口组合,可以选择包含用户名/密码(如http://user:pass@host:port/somepage
中所示)。