作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
样本 :
scala> Frame.show()
|year| make|model| comment|blank|
|2012|Tesla| S| No comment| R|
|1997| Ford| E350|Go get one now th...| L|
|2015|Chevy| Volt| Try| M|
<item>
<'year'>2012<'/year'>
<'make'>Tesla<'/make'>
<'model'>S<'/mode'>
</item>
最佳答案
最简单的方法是使用来自 spark-xml
的 XML writer。 :
val path: String = ???
df.write.format("com.databricks.spark.xml")
.option("rootTag", "items")
.option("rowTag", "item")
.save(path)
saveAsTextFile
:
def dumpXML(row: Row): String = ???
df.rdd.map(dumpXML).saveAsTextFile(path)
mapPartitions
添加根元素.
关于scala - 如何将 Spark 数据框写入 xml 文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35620822/
我是一名优秀的程序员,十分优秀!