1. 程式人生 > 其它 >gson哪些符號html轉義,Gson-特殊字元的轉義-disableHtmlEscaping()

gson哪些符號html轉義,Gson-特殊字元的轉義-disableHtmlEscaping()

escapeHtmlChars屬性

GsonBuilder相關方法

public GsonBuilder disableHtmlEscaping() {

this.escapeHtmlChars = false;

return this;

}

該屬性預設為true,表示會將html中的字元例如< >這樣的字元處理轉義掉。設定為false後,就不會轉義這些字元。直接看下面的例子更直觀一些

首先建立預設escapeHtmlChars為true的GsonBuilder

private static GsonBuilder getGsonBuilder() {

return new GsonBuilder().serializeNulls().enableComplexMapKeySerialization().serializeSpecialFloatingPointValues().setLenient();

}

測試程式碼:

String content = "";

test te= new test("colorcontent",content);

//序列化

String result = getGson().toJson(te);

System.out.println(result);

te = getGson().fromJson(result,te.getClass());

//反序列化結果

System.out.println(te.name+" "+te.score);

序列化結果和反序列化結果分別為:

{"name":"colorcontent","score":"\u003cfont color\u003d\"#FB4E44\"\u003e"}

colorcontent

我們看到序列化的結果中 若是設定為escapeHtmlChars為false,也就是不轉義,那麼會是什麼呢?

private static GsonBuilder getGsonBuilder() {

return new GsonBuilder().disableHtmlEscaping().serializeNulls().enableComplexMapKeySerialization().serializeSpecialFloatingPointValues().setLenient();

}

測試結果為

{"name":"colorcontent","score":""}

colorcontent

我們看到序列化的結果中左右尖括號並沒有被轉義,反序列化也是沒有進行轉義。所以該escapeHtmlChars影響序列化和反序列化是否轉義html字元。

什麼時候要設定,什麼時候不設定呢?這要看本身需求,後臺和客戶端打交道的時候,有時候字串中會有=