gpt4 book ai didi

java - 在 kotlin 中将 String 转换为 JsonObject 返回 null

转载 作者:行者123 更新时间:2023-12-02 02:19:10 29 4
gpt4 key购买 nike

编辑找到的解决方案:

在我的代码中发现了错误。我在单元测试中运行它,Android 在单元测试中不使用 JSON 对象,因为它是 android 的一部分。这就是它返回 null 的原因。

问题:

我正在使用 JSONObject("string") 将字符串转换回 JsonObject

这是我的字符串示例:

{
"sessions": [
{
"locations": [
{
"lat": "14.2294625",
"lng": "121.1509005",
"time": 1560262643000,
"speed": 0,
"speedLimit": 0
},
{
"lat": "14.2294576",
"lng": "121.1509498",
"time": 1560262713000,
"speed": 0,
"speedLimit": 0
},
{
"lat": "14.2294576",
"lng": "121.1509498",
"time": 1560262714000,
"speed": 0,
"speedLimit": 0
}
],
"name": "1.5645220491E12"
}
]
}

它在我的 JsonObjects 上返回 null:

content = "the string above"

var obj = JSONObject(content.substring(content.indexOf("{"), content.lastIndexOf("}") + 1))
System.out.println("obj1: " + obj.toString())

obj = JSONObject(content)
System.out.println("obj1: " + obj.toString())

var obj1 = JSONArray(content)
System.out.println("obj1: " + obj1.toString())

obj1 = JSONArray(content.substring(content.indexOf("{"), content.lastIndexOf("}") + 1))
System.out.println("obj2: " + obj1.toString())

所有输出均为空。有什么方法可以知道发生了什么错误,以便我可以调整我的 json 字符串吗?

最佳答案

由于您使用 Junit 运行代码,因此它在您计算机上的 SDK 上运行。这个SDK并不提供一切,有些只是一些骨架类,提供方法和文档的签名,但不提供代码。所以不能直接执行。

尝试在测试中添加库

testImplementation 'org.json:json:your_version'

在此处查看版本:

http://mvnrepository.com/artifact/org.json/json

这是基于这篇文章的答案:JSONObject returns a non null value of "null" after instantiating with string

关于java - 在 kotlin 中将 String 转换为 JsonObject 返回 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57285891/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com