当前位置: 首页 > 知识库问答 >
问题:

无法使用改型正确解析Json

赫连棋
2023-03-14

我不知道为什么我的json解析不起作用。这是我正在使用的Api。还有完整json输出的链接http://api.openweathermap.org/data/2.5/forecast/daily?zip=85008

{  
"city": {  
        "id": 5308655,  
        "name": "Phoenix",  
        "coord": {  
            "lon": -112.074043,  
            "lat": 33.44838  
        },  
        "country": "US",  
        "population": 0  
    },  
    "cod": "200",  
    "message": 0.014,  
    "cnt": 7,  
    "list": [  
        {  
            "dt": 1454871600,  
            "temp": {  
                "day": 10.46,  
                "min": 10.46,  
                "max": 10.46,  
                "night": 10.46,  
                "eve": 10.46,  
                "morn": 10.46  
            },  
            "pressure": 977.01,  
            "humidity": 32,  
            "weather": [  
                {  
                    "id": 800,  
                    "main": "Clear",  
                    "description": "sky is clear",  
                    "icon": "01n"  
                }  
            ],  
            "speed": 4.1,  
            "deg": 45,  
            "clouds": 0  
        },  
        {  
            "dt": 1454958000,    
            "temp": {  
                "day": 16.88,  
                "min": 3.31,  
                "max": 24.29,  
                "night": 11.29,  
                "eve": 23.78,  
                "morn": 4.31  
            },  
            "pressure": 979.15,  
            "humidity": 30,  
            "weather": [  
                {  
                    "id": 800,  
                    "main": "Clear",  
                    "description": "sky is clear",  
                    "icon": "01d"  
                }  
            ],  
            "speed": 2.41,  
            "deg": 52,  
            "clouds": 0  
        },

我试图得到每天的最低和最高温度。这是我的代码。引发的异常应该是BEGIN_OBJECT,但在第1行第190列编号。任何帮助不胜感激,谢谢!

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    ListView listView =(ListView) findViewById(R.id.main_activity_list);

    arrayAdapter = new ArrayAdapter<>(
            this,
            android.R.layout.simple_list_item_1,
            android.R.id.text1,
            new ArrayList<List1>());

    listView.setAdapter(arrayAdapter);
}

@Override
protected void onResume() {
    super.onResume();

    HttpLoggingInterceptor interceptor = new HttpLoggingInterceptor();
    interceptor.setLevel(HttpLoggingInterceptor.Level.BODY);
    OkHttpClient client = new OkHttpClient.Builder().addInterceptor(interceptor).build();

    Retrofit retrofit = new Retrofit.Builder()
            .baseUrl("http://api.openweathermap.org")
            .client(client)
            .addConverterFactory(GsonConverterFactory.create())
            .build();

    WeatherAPI weatherAPI = retrofit.create(WeatherAPI.class);

    Call<Weather> call = weatherAPI.loadWeather("85008", "json", "metric", "7", "3c6fee6e3e8b5764212701d9535a36d5");
    call.enqueue(this);
}

@Override
public void onResponse(Call<Weather> call, Response<Weather> response) {
    arrayAdapter.clear();
    arrayAdapter.addAll(response.body().list);
}

@Override
public void onFailure(Call<Weather> call, Throwable t) {
    Log.v(MainActivity.class.getSimpleName(), t.getLocalizedMessage());
}


public interface WeatherAPI {
    @GET("/data/2.5/forecast/daily")
    Call<Weather> loadWeather(
            @Query("zip")String zip,
            @Query("amode")String amode,
            @Query("units")String units,
            @Query("cnt")String cnt,
            @Query("APPID")String APIKey);
}



public class Weather{
    public List<List1> list;
}


public class List1{
    double dt;
    public HashMap<String, Temps> temp;

    @Override
    public String toString() {
        String output = "Min and High ";

        for(Map.Entry<String,Temps> temps:temp.entrySet()){
            output += temps.getKey() + " = " + temps.getValue().min;
        }
        return output;


    }
}


public class Temps{
    double min;
    double max;

}

共有2个答案

戚建白
2023-03-14

多亏了雅赞答案是

public class Weather{
    public List<List1> list;
}


public class List1{
    double dt;
    public Temps temp;


    @Override
    public String toString() {
        return "List1{" +
                "temp min = " + temp.min + " temp max " + temp.max + " dt = "+ dt+
                '}';
    }
}


public class Temps{
    double min;
    double max;
}

}

Temps不是由hashmap显示的,而是由单个对象显示的。我希望这对我认识的人有所帮助。

有凯泽
2023-03-14

temp 不是数组,而是它的类对象。

有一件事你应该知道,改造将不支持直接散列图检索(Pojo方法)。

公共哈希映射

公共温度温度;-- 这是正确的。

如果你想将你的响应存储在HashMap中,还有其他一些解决方法,你应该看看。

 类似资料:
  • GSON不是在一开始就解析我传递的整个JSON字符串吗?因此,最终,我希望新的数据源是对象。那可行吗?

  • 我希望有人能帮我解决这个问题。 我想用WebClient创建一个Rest客户端,从API中检索响应。所以我创建了我的Spring项目,添加了webflux、lombok和h2。我还创建了一个DTO类“CashAccount”和以下方法: 当我使用“.bodyToMono(String.class)”时,所有的功能都很好,我收到了结果: 相反,当我使用“.bodyToMono(cashcount.c

  • 我有一个简单的rest服务来存储时间范围,然而,Spring不能正确解析带有时区的datetime格式。 该实体是

  • 这是我用来读取gradle项目中的application.properties文件的代码。 我的文件位于中 这就是我试图在IntelliJ中运行应用程序的方式

  • 我使用和。我有一个带有方法的控制器,其中包含作为url参数的数组: 为什么会发生这种情况?为什么项目中没有显示示例数组?

  • 问题内容: 我有一个非常棘手的问题,我希望有人能对此有所启发。我正在使用Jquery从另一个网站(我拥有)检索Http响应。收到DOM后,我将对其进行解析以获取某些信息。但是,当我尝试获取链接的href属性时,IE会将本地域添加到href的开头! 这是我的代码: 我的变量PageLink应该是“ /pages/getThisPage.aspx?id=8347”。但是,它将作为“ http://my