gpt4 book ai didi

java - 从服务器上的文件解析 json

转载 作者:行者123 更新时间:2023-12-02 08:48:03 25 4
gpt4 key购买 nike

我正在开发一个 Android 项目,该项目从服务器上的文件解析 JSON 并将数据转换为 java 对象以使用 TextView 显示数据。

我已经创建了一个 HTTP 连接,以便应用程序可以向服务器发出 GET 请求以检索文件的内容。我还有一个方法将 JSON 转换为字符串并在 logcat 中显示 JSON,以便我知道 GET 请求是否成功。

我将保存 url 的字符串传递给服务器,并使用我的 HttpHandler 建立连接。

private class parseJSON extends AsyncTask<Void, Void, List<Book>> {

private final String TAG = parseJSON.class.getSimpleName();
@Override
protected List<Book> doInBackground(Void... voids) {
Log.i(TAG, "Start Async to get books.");
ArrayList<Book> bookArray = new ArrayList<>(0);

String jsonUrl = getApplication().getString(R.string.json_feed);
HttpHandler httpHandler = new HttpHandler();
String jsonString = httpHandler.makeJsonServiceCall(jsonUrl);

Log.i(TAG, "Response from url: " + jsonString);

if( jsonString != null) {
try {
JSONObject jsonObject = new JSONObject(jsonString);

// Get JSON array node.
JSONArray jArray = jsonObject.getJSONArray("book");

// Looping through all the books.
for (int i = 0; i < jArray.length(); i++) {
JSONObject jsonEntry = jArray.getJSONObject(i);

String year = jsonEntry.getString("year");
String title = jsonEntry.getString("title");
String publisher = jsonEntry.getString("publisher");
String price = "£" + jsonEntry.getString("price");

final Book bookObject = new Book(year, title, publisher, price);

//Add the new books to our result array.
bookArray.add(bookObject);
}

} catch (JSONException e) {
e.printStackTrace();
}

}
return bookArray;
}

@Override
protected void onPostExecute( List<Book> books) {
super.onPostExecute(books);
Log.e(TAG, "Populate UI recycler view with json converted data.");
// bookArray
bookList.setValue(books);
}
}

当我尝试获取数组节点时,解析似乎被中断。

出现以下问题:

org.json.JSONException: Value "Contents of my json file"

at org.json.JSON.typeMismatch(JSON.java:101)

at org.json.JSONObject.getJSONArray(JSONObject.java:591)

然后引用第 170 行,即:

 // Get JSON array node.
JSONArray jArray = jsonObject.getJSONArray("book");

我在解析过程中可能做错了什么吗?

最佳答案

你的解析没有问题,但是你的 JSONPath 很糟糕。看看你原来的结构。实际路径是 $.bib.book,因此要获取该数组,您需要执行

new JSONObject(jsonString).getJSONObject("bib").getJSONArray("book")

您也许可以执行 .getJSONArray("bib.book") 但我不确定该类如何解析 JSON 以及是否支持嵌套路径。

关于java - 从服务器上的文件解析 json,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60954903/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com