我正在尝试将.ndjson
文件从 Google Cloud 加载到 Processing 3.4,以便我可以从云中选择一个文件并使用它。
这是我试过的代码:
import cbl.quickdraw.*;
JSONObject json;
QuickDraw qd;
void setup() {
json = loadJSONObject("https://console.cloud.google.com/storage/browser/quickdraw_dataset/full/simplified/");
qd = new QuickDraw(this, json.getString("brain"));
}
void draw() {
qd.create(width/2, height/2, width/2, height/2);
}
并得到一个错误,因为 json 对象文本必须以{
.