json转义字符串
Posted wujixing909
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了json转义字符串相关的知识,希望对你有一定的参考价值。
json前台写数据
@RequestMapping("/addUserJson") public void addUserJson(User user,HttpServletRequest request, HttpServletResponse response){ String result = "{\"userName\":\" "+ user.getUserName()+" \", \"age\":\" "+ user.getAge()+" \"}"; PrintWriter out = null; response.setContentType("application/json"); try { out=response.getWriter(); out.write(result); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } }
以上是关于json转义字符串的主要内容,如果未能解决你的问题,请参考以下文章
在 Rails 上为连接、限制、选择等(不是条件)的 SQL 片段安全地转义字符串
从一个 JSON.parse 错误深入研究 JavaScript 的转义字符