How to have Retrofit to unescape HTML escaped symbols?
问题 I use Retrofit2 and GSON to deserialize incoming JSON. Here is my code in Android app: public class RestClientFactory { private static GsonBuilder gsonBuilder = GsonUtil.gsonbuilder; private static Gson gson; private static OkHttpClient.Builder httpClient; private static HttpLoggingInterceptor httpLoggingInterceptor = new HttpLoggingInterceptor() .setLevel(HttpLoggingInterceptor.Level.BASIC); static { gsonBuilder.setDateFormat(DateUtil.DATETIME_FORMAT); httpClient = new OkHttpClient.Builder()