數組我有很多很多的文件JSON字符串線,他們有這樣的:斯卡拉合併兩個或更多個字符串作爲一個JSON屬性
{ "id":123, "team":"A", "etc":"...", ...}
{ "id":124, "team":"A", "etc":"...", ...}
{ "id":124, "team":"B", "etc":"...", ...}
{ "id":125, "team":"A", "etc":"...", ...}
我可以在Scala中加載它們的數據幀。
通過用ID分組,我想這樣的:
{ "id":123, "team":"A", "etc":"...", ...}
{ "id":124, "team":["A","B"], "etc":"...", ...}
{ "id":125, "team":"A", "etc":"...", ...}
在Scala中,我該怎麼辦呢?
注:我不知道子屬性有多少是在每個JSON。大多數屬性在json行中都很常見。但是在幾個json行中可能會有一些獨特的屬性。
做你想要做這Apache的火花? –
是的! Apache的火花。 – Daebarkee