當前位置: 首頁>>代碼示例>>Java>>正文


Java GsonBuilder.setLenient方法代碼示例

本文整理匯總了Java中com.google.gson.GsonBuilder.setLenient方法的典型用法代碼示例。如果您正苦於以下問題:Java GsonBuilder.setLenient方法的具體用法?Java GsonBuilder.setLenient怎麽用?Java GsonBuilder.setLenient使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在com.google.gson.GsonBuilder的用法示例。


在下文中一共展示了GsonBuilder.setLenient方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: buildGsonConverterFactory

import com.google.gson.GsonBuilder; //導入方法依賴的package包/類
/**
 * 構建GSON轉換器
 * @return GsonConverterFactory
 */
private static GsonConverterFactory buildGsonConverterFactory(){
    GsonBuilder builder = new GsonBuilder();
    builder.setLenient();

    // 注冊類型轉換適配器
    builder.registerTypeAdapter(Date.class, new JsonDeserializer<Date>() {
        @Override
        public Date deserialize(JsonElement json, Type typeOfT, JsonDeserializationContext context) throws JsonParseException {
            return null == json ? null : new Date(json.getAsLong());
        }
    });

    Gson gson = builder.create();
    return GsonConverterFactory.create(gson);
}
 
開發者ID:qiaop,項目名稱:basicapp,代碼行數:20,代碼來源:RetrofitHelper.java

示例2: getGson

import com.google.gson.GsonBuilder; //導入方法依賴的package包/類
private Gson getGson() {
    if (gson == null) {
        GsonBuilder builder = new GsonBuilder();
        builder.setLenient();
        builder.setFieldNamingStrategy(new AnnotateNaming());
        builder.serializeNulls();
        gson = builder.create();
    }
    return gson;
}
 
開發者ID:joelan,項目名稱:ClouldReader,代碼行數:11,代碼來源:HttpUtils.java

示例3: provideGson

import com.google.gson.GsonBuilder; //導入方法依賴的package包/類
@Provides
@Singleton
public Gson provideGson() {
    GsonBuilder builder = new GsonBuilder();
    builder.setLenient();
    builder.registerTypeAdapter(Date.class, (JsonDeserializer<Date>) (json, typeOfT, context) -> {
        if (json.getAsJsonPrimitive().isNumber()) {
            return new Date(json.getAsJsonPrimitive().getAsLong() * 1000);
        } else {
            return null;
        }
    });
    return builder.create();
}
 
開發者ID:afiqiqmal,項目名稱:My-Android-Base-Code,代碼行數:15,代碼來源:ApiModule.java


注:本文中的com.google.gson.GsonBuilder.setLenient方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。