1
のJSONExceptionを取得:
{
"required": false,
"schema": {
"type": "string",
"custom": "com.atlassian.jira.plugin.system.customfieldtypes:textfield",
"customId": 10161
},
"name": "Error Code",
"operations": [
"set"
]
}
その後、私はあることを考えていましたこれは
JSONObject jsonObject = new JSONObject(lst.get(key).toString());
仕事をするだろう。しかし、私はこの例外を得た:
Exception in thread "main" org.codehaus.jettison.json.JSONException: Expected a ',' or '}' at character 95 of {required=false, schema={type=string, custom=com.atlassian.jira.plugin.system.customfieldtypes:textfield, customId=10161}, name=Error Code, operations=["set"]}
文字95はこれで間違っている可能性が何customfieldtypesとTextField
間のコロンのですか?
エラーメッセージの形式は、入力JSONとは関係ありません。 – xehpuk