因此,我正在尝试使用org.json库从字符串中创建一个JsonObject。 这是我正在使用的代码:
StringBuilder line = new StringBuilder();
while (fScanner.hasNextLine()) {
line.append(fScanner.nextLine());
}
System.out.println(line);
JSONObject jsonObject = new JSONObject(line);
System.out.println(jsonObject.toString());
但是我得到的输出显示出来,空的JsonObject但字符串正确。看起来像这样:
{"username": "Sam","name": "Sam Anderson","points": "150"}
{}