本文整理匯總了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);
}
示例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;
}
示例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();
}