gpt4 book ai didi

java - 使用 Protobuf( Protocol Buffer )通过 Retrofit 进行 GET 和 POST 服务调用

转载 作者:太空宇宙 更新时间:2023-11-04 12:22:44 34 4
gpt4 key购买 nike

任何人都可以给我一些例子,我们如何在改造中使用 protobuf - 我尝试过,但由于一些错误而失败,让我给你一个我的实现示例。

希望大家能够帮助我。

ApiInterface.java

public interface ApiInterface {
@GET
Call<CommonProto.Country> makeGetRequest(@Url String url);
}

ApiClient.java

public class ApiClient {

public static final String BASE_URL = "**************************";

private static Retrofit retrofit = null;


public static Retrofit getClient() {
if (retrofit==null) {
retrofit = new Retrofit.Builder()
.baseUrl(BASE_URL)
.addConverterFactory(Proto3ConverterFactory.create())
.build();
}
return retrofit;
}
}

MainActivity.java

ApiInterface apiService =
ApiClient.getClient().create(ApiInterface.class);

Call<CommonProto.Country> call = apiService.makeGetRequest("Services/CountryServices/GetAllCountry");

call.enqueue(new Callback<CommonProto.Country>() {
@Override
public void onResponse(Call<CommonProto.Country> call, Response<CommonProto.Country> response) {
String bodyString = null;
try {
Log.e("RETROFIT ::::::: ", String.valueOf(response.body())+"TEST");
} catch (Exception e) {
Log.e("RETROFIT ERROR ::::::: ", e.getMessage()+"TEST");
e.printStackTrace();
}

}

@Override
public void onFailure(Call<CommonProto.Country> call, Throwable t) {
// Log error here since request failed
Log.e(TAG, t.toString());
}
}

);

当我这样运行时,我得到了错误

java.lang.RuntimeException: com.google.protobuf.InvalidProtocolBufferException: Protocol message tag had invalid wire type.

我的 Proto.java 文件和 Proto.proto 文件都在此链接中, https://drive.google.com/folderview?id=0B4loQuzINvHCRUlNbk5LUXE1NXM&usp=sharing

请让我知道如何执行此 GET Req,而且我也在 POST Req 上苦苦挣扎。

最佳答案

你可以创建这样的界面

public interface LoginInterface {
@FormUrlEncoded
@POST("url goes here")
Call<LoginResponseData> getUserLoginDeatail(@FieldMap Map<String, String> fields);

}

创建一个复古文件的实例并调用类似这样的接口(interface)方法

 Retrofit retrofit = new Retrofit.Builder()
.baseUrl("base url")
.build();

webApis = retrofit.create(WebApis.class);

Call<LoginResponseData> call = webApis.getCurrentRide(keyValue);
call.enqueue(new Callback<LoginResponseData>() {
@Override
public void onResponse(Call<LoginResponseData> call, Response<LoginResponseData> response) {
try {



} catch (Exception e) {
// customizedToast.showToast(context.getResources().getString(
// R.string.exception));
e.printStackTrace();
}


}

@Override
public void onFailure(Call<LoginResponseData> call, Throwable t) {


}
});

对于 Protocol Buffer ,您可以找到引用here

关于java - 使用 Protobuf( Protocol Buffer )通过 Retrofit 进行 GET 和 POST 服务调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38670400/

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