web.xml
encoding
org.springframework.web.filter.CharacterEncodingFilter
encoding
UTF-8
encoding
/*
struts.properties
struts.i18n.encoding =UTF-8
struts.locale=zh_CN
struts.objectFactory=spring
struts.devMode=true
struts.configuration.xml.reload=true
struts.serve.static.browserCache=false
action
.......
response.setContentType("text/html;charset=UTF-8");
List pageBean=newsService.finByPage(currPage);
JsonConfig jsonConfig = new JsonConfig();
jsonConfig.setCycleDetectionStrategy(CycleDetectionStrategy.LENIENT);
JSONArray json = JSONArray.fromObject(pageBean, jsonConfig);
System.out.println(json.toString());
out.print(json);
out.flush();
out.close();
.......
页面显示是下面这样的
编号 标题 内容
1 ??? 1546
1 ??? ??
1 ??? ??
`
控制台打印出的json是这样的
Array[3]0:
Object
content:"1546"
currPage:1
pageSize:3
title:"???"
totalCount:16
totalPage:5
proto:
Object1:
Object2:
我编码都设置为了UTF-8,服务器端的控制台打印出的数据是正常的,但到了页面就成了这样了,中文英文都一律问号,请教各位大哥大姐这该怎么解决,感激不尽