Genson 0.97 のダウンロード

ダウンロード
提供元サイト1からダウンロード

提供元サイト2からダウンロード

サンプルコード:
Genson genson = new Genson();
String json = genson.serialize(777.777); // the output will be 777.777
genson.serialize(true); // output is true (without quotes)

genson.deserialize(“777", int.class); // deserializes it into 777
genson.deserialize(“777.777", Object.class); // will return 777.777 (a double)
7 genson.deserialize(“null", Object.class); // will return null;

IT

Posted by arkgame