gpt4 book ai didi

java - 如何存储来自 API 调用的 JSON 数据

转载 作者:行者123 更新时间:2023-11-29 09:21:43 25 4
gpt4 key购买 nike

我是一名新手程序员,所以请随时对没有意义的事情发表评论,以便我学习。

我正在开发一个可以调用 SimpleGeo 的咖啡店查找器 Android 应用程序获取每个景点的API。我无法想出一种方法来存储返回的 JSON 数据,以便我可以用于我的目的。我需要对数据做两件事:首先,我需要一个 map 覆盖类来访问它,这样我就可以为每个咖啡店绘制标记(我可以接受);其次,我需要在 ListView 中显示数据。

API 调用:

    /** Queries SimpleGeo with current location **/
private void getJSONData() {
SimpleGeoPlacesClient client = SimpleGeoPlacesClient.getInstance();
client.getHttpClient().setToken(oauth_key, oauth_secret);
double radius = 25;
try {
client.search(lat, lng, "coffee", null, radius,
new FeatureCollectionCallback() {
public void onSuccess(FeatureCollection collection) {
try {
features = collection.toJSON();
} catch (JSONException e) {
System.out.println(e.getMessage());
}
}

public void onError(String errorMessage) {
System.out.println(errorMessage);
}
});
} catch (IOException e) {
System.out.println(e.getMessage());
}
}

解析数据:

    private void parseJSONData() throws JSONException {
for (int i = 0; i < features.length(); i++) {
JSONObject feature = features.getJSONObject(i).getJSONObject(
"feature");
}
}

我目前正在尝试使用 this 中概述的 GSON 从数据中创建 Java 对象教程。 SQLite 适合这个吗?任何专业提示将不胜感激。

谢谢。

最佳答案

假设您使用的是 android,您可以使用谷歌地图 View

查看,com.google.android.maps.MapView http://developer.android.com/resources/tutorials/views/hello-mapview.html

和 ListView http://developer.android.com/reference/android/widget/ListView.html

我看不出 SQLite 如何适合这里,除非您计划在应用程序重新启动时存储这些位置。您需要做的就是从 JSON 中提取地点信息,然后使用该数据做任何您想做的事情。

关于java - 如何存储来自 API 调用的 JSON 数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5940633/

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