我的目标是能够使用键从jsonobject获取值,例如 example.path.to.string
. 如果你用了这把钥匙,你应该能拿到钥匙 string
由此得出的价值:
{
"example": {
"path": {
"to": {
"string": "Hello world!"
}
}
}
}
理想情况下,我可以使用 example.getAsJsonObject().get("example.path.to.string").getAsString();
得到这个值。然而,我却没有运气。
我也见过这个问题,但没有解释,很难理解。
我该怎么办?
暂无答案!
目前还没有任何答案,快来回答吧!