android – 改造编码特殊字符

前端之家收集整理的这篇文章主要介绍了android – 改造编码特殊字符前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我正在使用gson而不是android进行改造,因为它更快,更安全.

问题是改造是编码特殊字符,如=和?,我正在使用的网址无法解码这些字符.

这是我的代码

api类:

public interface placeApi {

@GET("/{id}")
public void getFeed(@Path("id") TypedString id,Callback

主要课程:

String url = "http://api.beirut.com/BeirutProfile.PHP?"; 
String next = "profileid=111";


 //Creating adapter for retrofit with base url
    RestAdapter restAdapter = new RestAdapter.Builder().setEndpoint(url).setRequestInterceptor(requestInterceptor).build();

    //Creating service for the adapter
    placeApi placeApi = restAdapter.create(placeApi.class);

    placeApi.getFeed(id,new Callback

我尝试使用这个gson方法解决问题,但它没有用,很可能是因为它只包含url的第一部分而不是我发送到placeApi接口的那部分:

Gson gson = new GsonBuilder().disableHtmlEscaping().create();

并在创建restadapter时添加了这个:

RestAdapter restAdapter = new RestAdapter.Builder().setEndpoint(url).setRequestInterceptor(requestInterceptor).setConverter(new GsonConverter(gson)).setConverter(new GsonConverter(gson)).build();

有什么帮助吗?

最佳答案
您必须使用Use @EncodedPath.像这样:

public interface placeApi {
@GET("/{id}")
public void getFeed(@EncodedPath("id") TypedString id,Callback

注意:以上工作但现在我正在查看文档,似乎@EncodedPath已被弃用,因此请使用@PATH及其参数:

public interface placeApi {
@GET("/{id}")
public void getFeed(@Path("id",encode=false) TypedString id,Callback

ref:https://square.github.io/retrofit/2.x/retrofit/

猜你在找的Android相关文章