Java または Groovy を使用して、2 つの独立した異なる JSON 配列または JSON オブジェクトをマージまたは連結し、単一の JSON オブジェクトとして扱う方法を教えてください。
以下のサンプル JSON に依存しないオブジェクトを参照してください。最初のオブジェクトは職務情報を保持します。
[
{
"code": "A0001",
"description": "Do strategic planning for long range goals of the university"
},
{
"code": "A0002",
"description": "Administer budgets in excess of 1,000,000"
}]
2 番目の JSON オブジェクトは証明書情報を保持します
[
{
"code": "CPA",
"description": "Certified Public Accountant"
},
{
"code": "CPR",
"description": "Cardiopulmonary Resuscitation"
},
{
"code": "ELE",
"description": "Electrician's License"
}]
以下の形式で両方の JSON を連結してアクセスする必要があります `
{
"duties":
[{
"code": "A0001",
"description": "Do strategic planning for long range goals of the university"
},
{
"code": "A0002",
"description": "Administer budgets in excess of 1,000,000"
}],
"Certificates":
[
{
"code": "CPA",
"description": "Certified Public Accountant"
},
{
"code": "CPR",
"description": "Cardiopulmonary Resuscitation"
},
{
"code": "ELE",
"description": "Electrician's License"
}
]
}
これを実現するために利用できるオプションを教えてください。ありがとう