我有这个 Json 声明:
{name=Adam Schmidt, id=43}
我想提取名称的值,尝试这段代码但没有用
// parse json data
try {
JSONObject userObject = new JSONObject(result);
userName = userObject.getString("name");
tvName.setText(userName);
} catch (Exception ex) {
ex.printStackTrace();
}