公共返回JSON信息的方法
Posted 永无止境-追求致高领域
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了公共返回JSON信息的方法相关的知识,希望对你有一定的参考价值。
java代码:
public void returnMessage(HttpServletResponse response, Object str){
PrintWriter write = null;
try{
write = response.getWriter();
write.print(str);
}catch(IOException e){
e.printStackTrace();
}finally{
write.close();
} }
其实也可以把它包装成一个公共类。然后供其它Controller层继承使用。
以上是关于公共返回JSON信息的方法的主要内容,如果未能解决你的问题,请参考以下文章
将公共属性和方法公开给 Main Activity 的片段是不是是一种不好的形式?