gpt4 book ai didi

java - JSONObject (org.json) 到 JsonElement(com.google.gson)

转载 作者:搜寻专家 更新时间:2023-10-31 19:32:09 24 4
gpt4 key购买 nike

我正在编写一个 Java 代码,我需要在其中将 JSONObject 转换为 JsonElement。有什么方法可以将 JSONObject (org.json) 转换为 JsonElement(com.google.gson)?

最佳答案

一种始终有效的方法是将对象序列化为 JSON,然后再次解析它:

JSONObject myData = ...
Gson gson = new Gson();
JsonElement element = gson.fromJson(myData.toString(), JsonElement.class);

关于java - JSONObject (org.json) 到 JsonElement(com.google.gson),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40654988/

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