gpt4 book ai didi

android - JSON 序列化对象数组 Android

转载 作者:行者123 更新时间:2023-11-29 01:22:36 24 4
gpt4 key购买 nike

我有一个非常简单的对象数组

Object[] args = new Object[] {"002"};

我的目标是在 Android 中对这个对象数组进行 JSON 序列化,并将结果作为字节数组获取。 Android 中有两个用于 JSON 序列化的类。 JSONArrayJSONObject。我应该使用哪个类?

特别是我不确定如何使用

JSONObject json = new JSONObject();
json.put("key", "value");

在这种情况下是例行公事。

最佳答案

你应该为此使用 JSONArray

JSONArray jsonArray = new JSONArray();
jsonArray.put("002");
byte[] bytes = jsonArray.toString().getBytes()

关于android - JSON 序列化对象数组 Android,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35917018/

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