我正在尝试从 hive 读取json文件。
我使用JsonSerde api加载json但出现错误
有没有人知道如何解决这个问题?
最佳答案
您正在尝试处理Array,但已获得Object。
在杰森:
对象是:{...}
数组是:[...]
例子:
访问数组:myArray[0]
访问对象:myObject.myField
关于json - org.openx.data.jsonserde.json.JSONObject无法转换为org.openx.data.jsonserde.json.JSONArray,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29986064/