我正在创建此应用,该应用会从JSON文件中获取“公共汽车”对象,并使用ID显示其信息。问题是我遵循了教程并做了所有我在帖子和视频中看到的事情,但是该应用程序始终无法获得响应。我可能会丢失什么?
我正在使用Android Studio,其中包含retrofit2和gson-converter所需的gradle文件。我创建了API接口,Retrofit创建者类和ServiceApi生成器类,还为该类做了@SerializedName批注,它将获取json数据。不过,不知道为什么它不起作用。
JSON:
{
"response_code":5,
"response_msg":"Success",
"bus":{
"vehicle_id":"1",
"vehicle_plate":"ا ا ا 4389",
"category":"ورشة",
"category_id":2,
"last_seen":"2019-04-15T12:19:24.4223277",
"location":{
"lat":0.0,
"lon":0.0
},
"status":{
"sos":false,
"ignition":"",
"movement":false,
"speed":0.0
},
"driver":{
"driver_id":0,
"driver_name":""
},
"inspection_report":[]
}
}
这里是MainActivity.java(目前仅测试“成功”或“失败”,但它总是使我失败):
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
ApiGenerator.getServiceApi().getBusStatus("1").enqueue(new Callback<BusStatus>() {
@Override
public void onResponse(Call<BusStatus> call, Response<BusStatus> response) {
Toast.makeText(MainActivity.this, "success", Toast.LENGTH_SHORT).show();
}
@Override
public void onFailure(Call<BusStatus> call, Throwable t) {
Toast.makeText(MainActivity.this, "fail", Toast.LENGTH_SHORT).show();
}
});
}
}
这是BusStatus.java,它将获取json数据:
public class BusStatus {
@SerializedName("response_code")
private Integer response_code;
@SerializedName("response_msg")
private String response_msg;
@SerializedName("bus")
private Bus bus;
public BusStatus(int response_code, String response_msg, Bus bus) {
this.response_code = response_code;
this.response_msg = response_msg;
this.bus = bus;
}
public Integer getResponse_code() {
return response_code;
}
public void setResponse_code(Integer response_code) {
this.response_code = response_code;
}
public String getResponse_msg() {
return response_msg;
}
public void setResponse_msg(String response_msg) {
this.response_msg = response_msg;
}
public Bus getBus() {
return bus;
}
public void setBus(Bus bus) {
this.bus = bus;
}
}
接口MyApi.java(不确定我是否以正确的方式编写了查询):
public interface MyApi {
@GET("/*API PATH*/")
Call<BusStatus> getBusStatus(@Query("id") String vehicle_id);
}
RetrofitClient创建者RetrofitClientInstance:
public class RetrofitClientInstance {
private static Retrofit retrofit;
public static Retrofit getRetrofitInstance(){
Gson gson = new GsonBuilder().setLenient().create();
if(retrofit == null){
retrofit = new Retrofit.Builder()
.baseUrl(/*BASE URL*/)
.addConverterFactory(GsonConverterFactory.create(gson))
.build();
}
return retrofit;
}
}
API生成器ApiGenerator.java:
public class ApiGenerator {
public static MyApi getServiceApi(){
return RetrofitClientInstance.getRetrofitInstance().create(MyApi.class);
}
}
我还确保在AndroidManifest.xml中添加了Internet权限(不介意其他内容):
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.testgettingdata">
<uses-permission android:name="android.permission.INTERNET" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
我想要的是现在成功了,所以我可以继续,但是不知道为什么失败了,甚至以为我已经尝试调试但是不明白是什么使它直接失败了。 如果我的代码有误,请指导我。
编辑:这是我收到Throwable t消息时遇到的错误: “ java.net.UknownServiceExeption:网络安全策略不允许与(/ 基本URL /)进行CLEARTEXT通信”
答案 0 :(得分:0)
您必须将基本URL更改为此:-
http://(BASE URL)/api/
和inetrface这样的:-
@GET("(API PATH)?")
Call<BusStatus> getBusStatus(@Query("id") String vehicle_id);
答案 1 :(得分:0)
我认为您正在使用Android Pie,这就是您遇到此问题的原因。这是因为,如文档中所述:
从Android 9(API级别28)开始,已禁用明文支持 默认情况下。
您可以从here进一步了解这种情况,或者继续添加usesCleartextTraffic作为应用程序标记的属性。
<?xml version="1.0" encoding="utf-8"?>
<manifest ...>
<uses-permission android:name="android.permission.INTERNET" />
<application
...
android:usesCleartextTraffic="true"
...>
...
</application>
</manifest>