我想編寫一個程序,它可以創建JSON格式的輸出,怎麼會這樣做呢?和編程語言?創建JSON格式輸出
這是JSON(預期輸出)的示例輸出,我需要在腳本執行過程中以用戶友好的方式在Name,Gender,Qualification和其他屬性中輸入。並以下列JSON格式輸出。對不起,我是編程新手,但對學習Perl(或)Python(或)Java非常感興趣。這裏最好的是什麼?
有什麼建議嗎?
P.S對不起,我對JSON也很新,請爲我這個基本的道歉。
[
{
"Name":"Steven Mark",
"gender":"male",
"Qualification": {
"college":"Bachelor in Science",
"tech":"certified pro"
},
"contributions": [
{
"name":"biography",
"type":"book",
},
]
},
{
"Name":"Andrea Mark",
"Gender":"female",
"Qualifications": {
"college":"Bachelor in physics",
},
"contributions": [
{
"name":"my insights",
"type":"movie",
},
]
}
]
您需要先決定至少要使用哪種語言;沒有這個決定(這是你的決定),這個問題太廣泛而無法回答。 – 2014-10-27 08:50:12
這不是有效的JSON。學會正確縮進以發現錯誤 – ikegami 2014-10-27 10:30:40