Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在 JsonArray 中添加字符串值,然后创建 Json String 以将其发送到服务器上。
我在谷歌上搜索,但找不到任何有用的东西。谁能告诉我怎么做?谢谢
JSONArray list = new JSONArray(); list.put("Hello"); list.put("Hey");
之后我想创建 JSONString
简单的:
JSONArray list = new JSONArray(); list.put("Hello"); list.put("Hey"); String jsonString = list.toString()
根据文档,它应该导致 "["Hello", "Hey"]"
只需使用
list.toString(2)
这将为您提供 json 中的字符串