2024年6月7日第六十五篇
今天我做了android页面开发,和一个mysql网页程序的开发,今天正式开始做去年的测试题,希望周二的时候有一个不的答卷。
今天学到了一个有关retrofit的知识是
Gson gson = new GsonBuilder() .setLenient() .create(); Retrofit retrofit = new Retrofit.Builder() .baseUrl("https://api.example.com/") .addConverterFactory(GsonConverterFactory.create(gson)) .build();
放宽获取的json从而获得更宽泛的返回值。