博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
返回json格式数据乱码
阅读量:6331 次
发布时间:2019-06-22

本文共 2188 字,大约阅读时间需要 7 分钟。

本文为博主原创,未经允许不得转载:

      原本返回json格式数据的代码:

@ResponseBody    @RequestMapping(value = "getListByTime", method = { RequestMethod.POST, RequestMethod.GET })    public String getListByTime(@RequestParam String aoData,String sEcho,HttpServletRequest request) throws Exception {        AoData paramAoData = new AoData(aoData);                Detail cameraDetail = new Detail ();        detail.setDisplatStart(paramAoData.getiDisplayStart());        detail.setDisplayLength(paramAoData.getiDisplayLength());        List
list = dataService.getListByTime(detail); int size = list.size(); String[][] data = new String[size][]; for (int i = 0; i < size; i++) { Detail info = list.get(i); data[i] = info.values(); } int total = dataService.getCameraByTimeTotal(detail); return JSonUtils.toJSon(new DataTableReturnObject(total, total, sEcho, data)); }

以上代码断点从数据库中查询的数据没有乱码,但在前台接收的时候乱码。

解决方法:

@ResponseBody    @RequestMapping(value = "getListByTime", method = { RequestMethod.POST, RequestMethod.GET })    public void getListByTime(@RequestParam String aoData,String sEcho,HttpServletRequest request) throws Exception {        AoData paramAoData = new AoData(aoData);                Detail cameraDetail = new Detail ();        detail.setDisplatStart(paramAoData.getiDisplayStart());        detail.setDisplayLength(paramAoData.getiDisplayLength());        List
list = dataService.getListByTime(detail); int size = list.size(); String[][] data = new String[size][]; for (int i = 0; i < size; i++) { Detail info = list.get(i); data[i] = info.values(); } int total = dataService.getCameraByTimeTotal(detail); PrintWriter out = null; try { String result = JSonUtils.toJSon(); out = response.getWriter(); out.print(result); out.flush(); } catch (Exception e) { LOG.error("error",e); } finally { if (out != null) { out.close(); } } }

解决方案为:将对象通过流的形式进行传输给前台,PrintWriter向文本输出流打印对象的格式化表示形式。

你可能感兴趣的文章
聚焦触宝反侵权事件:中国创业者用什么护航海外市场大门
查看>>
AOP技术基础
查看>>
Android系统进程间通信(IPC)机制Binder中的Server启动过程源代码分析(2)
查看>>
Lync 小技巧-5-当前已暂停共享
查看>>
无线802.11n 2.4G与5G性能测试
查看>>
子域名信息收集攻略
查看>>
[Android]开发数独游戏思路分析过程
查看>>
SpreadJS 类Excel表格控件 - V12 新特性详解
查看>>
理解并取证:IPv6与IPv4在报文结构上的区别
查看>>
EOS主网上线只是开始,如何运营决定未来
查看>>
不用Visual Studio,5分钟轻松实现一张报表
查看>>
(译)如何使用cocos2d和box2d来制作一个Breakout游戏:第一部分
查看>>
计算机图形学(一) 图形系统综述
查看>>
持续集成(CI)- 几种测试的区别(摘录)
查看>>
多用户虚拟Web3D环境Deep MatrixIP9 1.04发布
查看>>
求高手,求解释
查看>>
[MSSQL]NTILE另类分页有么有?!
查看>>
winform datagridview 通过弹出小窗口来隐藏列 和冻结窗口
查看>>
Jquery闪烁提示特效
查看>>
最佳6款用于移动网站开发的 jQuery 图片滑块插件
查看>>