首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

websphere 对汉语言支持的配置

2012-11-03 
websphere 对中文支持的配置??? 程序如果运行在WebSphere中,如果通过URL方式传递参数,WebSphere默认对中文

websphere 对中文支持的配置

??? 程序如果运行在WebSphere中,如果通过URL方式传递参数,WebSphere默认对中文不支持

?

    为了获得WebSphere对中文的支持需要在下面路径下WebSphere\AppServer\profiles\AppSrv01\config\cells\it-server01Node01Cell\nodes\it-server01Node01\servers\server1的server.xml中修改如下配置,找到如下节点

?

?

?

修改属性genericJvmArguments="" 为“-Dfile.encoding=GBK -Dclient.encoding.override=GBK? -Duser.language=Zh -Duser.region=CN" 。保存重新启动WebSphere。

?

2.在web。xml中,把

在jsp页面中添加如下代码

?

?

<%
request.setCharacterEncoding("GBK");
response.setCharacterEncoding("GBK");
%>

热点排行