在套接字中使用gson有什么好处?

时间:2014-06-07 07:45:17

标签: gson

将此鳕鱼中的字符串转换为Gson然后通过套接字将其发送到对比而没有Gson的好处是什么?

String s ="abc";
DataOutputStream dos=new DataOutputStream();

Gson gson=new Gson();
String json= gson.toJson(s);
dos.writeUtf(json);

0 个答案:

没有答案