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.
我的 php 发送以下 json,
[ "x", "y", "z" ]
我正在尝试在 java 中解析它,但我没有可供选择的节点。我该如何进行?
我正在使用以下内容:
JSONArray usernames = json.getJSONArray("What-should-i-put-here");
你所拥有的是一个简单的 JSON 数组。它可以直接用你正在使用的库(JSON.org)解析:
final String json = "[\"x\", \"y\", \"z\"]"; final JSONArray array = new JSONArray(json); for(int i = 0; i < array.length(); i++) { System.out.println(array.get(i)); }