Quantcast
Channel: Processing Forum
Viewing all articles
Browse latest Browse all 1768

Re : Processing 2.0 beta 8 and JSONObject

$
0
0
I did update json4processing lib recently (version 0.1.6), it should work for b8 now. However you don't use JSONObject and JSONArray anymore - just JSON.

  1. JSON root = JSON.parse(text);
  2. root.getString("???");
  3. root.getInt("???");
  4. JSON innerObj = root.getJSON("???");
  5. JSON innerArr = root.getJSON("???");

Viewing all articles
Browse latest Browse all 1768

Trending Articles