尽管JsonObject的构造函数中提供的字符串正确,但为什么JsonObject为空?

时间:2019-03-01 03:51:21

标签: java json

因此,我正在尝试使用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"}
{}

0 个答案:

没有答案