WebLogic乱码相关

第一步:给每个server的server start标签里的启动参数里加入:
-Dfile.encoding=GBK -Duser.language=zh -Duser.region=CN


第二步:每个web applicaton中的weblogic.xml加入
<charset-params>
  <input-charset>
    <resource-path>/*</resource-path>
    <java-charset-name>GBK</java-charset-name>
  </input-charset>
</charset-params>

你可能感兴趣的:(java,xml,Web,weblogic)