MessageResources从文件读取汉字是问号乱码?
pageEncoding用任何 一种都不行.怎么办
public String coding(String str) throws Exception {
if (str == null)
str = "";
else
str = new String(str.trim().getBytes("ISO-8859-1"));
return str;
}