我想从使用 Volley 的 android 应用程序将此类数据发送到我在 IBM Watson-Studio 中部署的机器学习模型 API。
{
"fields":[
"Gender",
"Age",
"EstimatedSalary"
],
"values":[
Gender,
Age,
EstimatedSalary
]
}
我坚持为此要求创建一个 JSON 对象并将其发送到 API。
我被困在创建 JSON-Object 并且无法继续
protected Map<String, String> getParams() throws AuthFailureError {
Map<String, String> params = new HashMap<>();
params.put("fields","Gender");
params.put("values",Gender);
return super.getParams();
}
我知道那行不通。但不明白如何进行。