这两个我都试过了:
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").
-或者:
authority("10.0.2.2:28642/api").
?