你好,我有一個DF包含Json字符串值是像{“關鍵”:價值,“anotherKey”: anotherValue},所以當我在寫包含這個字符串的DF CSV,火花增加NUL字符af的前麵這條線最後,所以最後一行
NUL{“關鍵”:價值,“anotherKey”: anotherValue}空
我真的不希望這樣的事情發生,我怎樣才能防止這種情況呢?
我使用的代碼
df.coalesce (1) .write.format (csv)。選項(“標題”,假)。選項(“"," ").save(路徑)
我在dataframe值列在Json字符串的格式,我想寫dataframe csv
_____
價值
__________
{" Name ": ABC,“年齡”:12}
__________