使用R将XML转换为JSON

时间:2021-06-12 09:00:45

Is there a way to convert between XML & JSON in R Studio?

有没有办法在R Studio中转换XML和JSON?

I've looked at XML & RJSONIO packages in R but didn't find a function to do what I'm looking for.

我查看了R中的XML和RJSONIO包,但没有找到能够完成我正在寻找的功能。

1 个解决方案

#1


9  

You can convert XML to a list using the xmlToList() function from the XML package, and you can convert a list to JSON using the toJSON() function from the RJSONIO package.

您可以使用XML包中的xmlToList()函数将XML转换为列表,并且可以使用RJSONIO包中的toJSON()函数将列表转换为JSON。

#1


9  

You can convert XML to a list using the xmlToList() function from the XML package, and you can convert a list to JSON using the toJSON() function from the RJSONIO package.

您可以使用XML包中的xmlToList()函数将XML转换为列表,并且可以使用RJSONIO包中的toJSON()函数将列表转换为JSON。