我正在使用服务“ https://somedomain.net/api/items.php?token=token&item ”的 Web API 来检索 Json 响应。
在 Android 中,我使用 URI 构建器:
public static URL buildUrl(String token, String item) {
Uri builtUri = Uri.parse(BASE_URL).buildUpon()
.appendQueryParameter(PARAM_TOKEN, token)
.appendQueryParameter(PARAM_ITEM, item)
.build();
URL url = null;
try {
url = new URL(builtUri.toString());
} catch (MalformedURLException e) {
e.printStackTrace();
}
return url;
}
作为 URI 生成器的结果“ https://somedomain.net/api/items.php?token=token&item=item ”
我需要使用没有参数键的值“item”。
我尝试使用“null”不起作用“ https://somedomain.net/api/items.php?token=token&=item ”
我在互联网上搜索了三天,没有找到答案。
在此先感谢您的帮助。
开满天机
相关分类