1个回答
展开全部
/**
* 将一组对象序列化为json串
* @param objs 要序列化的目标对象
* @return 序列化后的json字符串
*/
public static String jsonString(Object... objs) {
if(objs == null)
return "\"\"";
if(objs.length == 1)
return parseJSON(objs[0]);
return parseJSON(objs);
}
调用的时候可以这样写
response.setContentType("text/html;charset=utf-8");
PrintWriter out = null;
try {
out = response.getWriter();
out.println(jsonString(objs));
} catch (IOException e) {
throw new AjaxException(e);
} finally {
if(out != null){
out.close();
}
}
* 将一组对象序列化为json串
* @param objs 要序列化的目标对象
* @return 序列化后的json字符串
*/
public static String jsonString(Object... objs) {
if(objs == null)
return "\"\"";
if(objs.length == 1)
return parseJSON(objs[0]);
return parseJSON(objs);
}
调用的时候可以这样写
response.setContentType("text/html;charset=utf-8");
PrintWriter out = null;
try {
out = response.getWriter();
out.println(jsonString(objs));
} catch (IOException e) {
throw new AjaxException(e);
} finally {
if(out != null){
out.close();
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询