iso8859-1 struts2中乱码的处理

最近刚搞完一个项目(使用了两个不同版本的struts),其中使用了 Struts2的新版 struts2-core-2.1.6.jar xwork-2.1.2.jar
在使用的时候出现了乱码问题,以下是我的解决办法:

我首先说一下为什么会产生乱码吧,当然这主要与我们公司的特殊应用环境有关:
公司使用的是oracle 数据库,并且其字符集: iso-8859-1 ,在处理java代码时,对所有的含中文 配置文件其编码都是iso-8859-1 ,
java 代码编译时 -encoding "ISO8859-1" 。这样在使用struts2 时 就出现了乱码,主要是 <s:property 标签,经过对struts2源码的分析该标签输出时默认对输出内容做了htmlEncode 操作。
解决该问题:
1 将默认的执行 htmlEncode 操作,改为对输出内容不进行htmlEncode操作:
struts2-core-2.0.6 中 :
package org.apache.struts2.components ;
将 Property.java 中的
private boolean escape = true;
改为:
private boolean escape = false;

其次,将prepare 方法改为:


private String prepare(String value) {
if (escape) {
return TextUtils.htmlEncode(value,false);
} else {
return value;
}
}


struts2-core-2.1.6 中:
package org.apache.struts2.components
将 Property.java 中的
private boolean escape = true;
改为:
private boolean escape = false;

其次,将prepare 方法改为:

private String prepare(String value) {
String result = value;
if (escape) {
result = TextUtils.htmlEncode(result,false);
}
if (escapeJavaScript) {
result = TextUtils.escapeJavaScript(result);
}
return result;
}


再其次:
package org.apache.struts2.views.jsp;
将 PropertyTag.java 中的
private boolean escape = true;
改为:
private boolean escape = false;

这样就OK了~!

进一步说明: 对于需要使用 htmlEncode 的时候,那么就使用 <s:property 标签的 escape="true" (防止用户在输入内容时页面出现js注入错误)
但是以上的修改方法还是有一个问题:我们来看看xwork-2.1.2 中的
package com.opensymphony.xwork2.util;
TextUtils.java

public final static String htmlEncode(String s) {
return htmlEncode(s, true);
}

/**
* Escape html entity characters and high characters (eg "curvy" Word quotes).
* Note this method can also be used to encode XML.
* @param s the String to escape.
* @param encodeSpecialChars if true high characters will be encode other wise not.
* @return the escaped string
*/
public final static String htmlEncode(String s, boolean encodeSpecialChars) {
s = noNull(s);

StringBuilder str = new StringBuilder();

for (int j = 0; j < s.length(); j++) {
char c = s.charAt(j);

// encode standard ASCII characters into HTML entities where needed
if (c < '\200') {
switch (c) {
case '"':
str.append(""");

break;

case '&':
str.append("&");

break;

case '<':
str.append("<");

break;

case '>':
str.append(">");

break;

default:
str.append(c);
}
}
// encode 'ugly' characters (ie Word "curvy" quotes etc)
else if (encodeSpecialChars && (c < '\377')) {
String hexChars = "0123456789ABCDEF";
int a = c % 16;
int b = (c - a) / 16;
String hex = "" + hexChars.charAt(b) + hexChars.charAt(a);
str.append("&#x" + hex + ";");
}
//add other characters back in - to handle charactersets
//other than ascii
else {
str.append(c);
}
}

return str.toString();
}


也就是说,我们即使 使用 <s:property 标签的 escape="true" 任然会有一定问题。这里我们首先复习一下:

ASCII 的表示内容如下:
0 – 31 控制符号
32 空格
33-47 常用符号
48-57 数字
58-64 符号
65-90 大写字母
91-96 符号
97-127 小写字母


ISO8859 如下:
编号 0 – 127 与 ASCII 保持兼容
编号128 – 159 共32个编码保留给扩充定义的 32 个扩充控制码
160 为空格
161 -255 的 95 个数字用于新增加的字符代码
编码的布局与 ASCII 的设计思想如出一辙,由于在一张码表中只能增加 95 种字符的代码,所以 ISO8859 实际上不是一张码表,而是一系列标准,包括 14 个字符码表。
例如,西欧的常用字符就包含在 ISO8859-1字符表中。在 ISO8859-7种则包含了 ASCII 和现代希腊语字符。


现在我想大家一定已经都很明白了,为什么修改后的代码:

else if (encodeSpecialChars && (c < '\377')) {
String hexChars = "0123456789ABCDEF";
int a = c % 16;
int b = (c - a) / 16;
String hex = "" + hexChars.charAt(b) + hexChars.charAt(a);
str.append("&#x" + hex + ";");
}


才能将中文显示正确。


但是同时也是有隐患的,所以也就让我有了别的想法:
干脆先进行转码好了
struts2-core-2.0.6 中 :
package org.apache.struts2.components ;
将 Property.java 中的

private String prepare(String value) {
if (escape) {
return TextUtils.htmlEncode(new String(value.getBytes("iso-8859-1"),"gbk"));
} else {
return value;
}
}


注:进行该修改 可不对
package org.apache.struts2.components
Property.java 中的
private boolean escape = true;
进行修改,让其默认进行 htmlEncode

struts2-core-2.1.6 中:
package org.apache.struts2.components
将 Property.java 中的

private String prepare(String value) {
String result = value;
if (escape) {
result = TextUtils.htmlEncode(new String(result.getBytes("iso-8859-1"),"gbk"));
}
if (escapeJavaScript) {
result = TextUtils.escapeJavaScript(result);
}
return result;
}



注:进行该修改 可不对:
package org.apache.struts2.components
Property.java 中的
private boolean escape = true;

package org.apache.struts2.views.jsp;
PropertyTag.java 中的
private boolean escape = true;
进行修改,让其默认进行 htmlEncode 操作,便可以显示正确的中文。

其他相关包说明:
xwork-2.0.1.jar
struts2-core-2.0.6.jar
struts2-spring-plugin-2.0.6.jar
struts2-tiles-plugin-2.0.6.jar

xwork-2.1.2.jar
struts2-core-2.1.6.jar
struts2-spring-plugin-2.1.6.jar
struts2-tiles-plugin-2.1.6.jar
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值