Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
、および演算子にGson 関数toJsonを使用していますが、最終的な文字列では として解釈されます。=><\u003e
toJson
=
>
<
\u003e
追加または注意が必要な特別な機能はありますか?
HTML エスケープを無効にする必要があります。これを示すサンプルを次に示します。
Gson gson1 = new Gson(); String s1 = gson1.toJson("<>"); Gson gson2 = new GsonBuilder().disableHtmlEscaping().create(); String s2 = gson2.toJson("<>");
s1:「\u003c\u003e」
s2:「<>」