Posted on 2008-07-10 17:52
追梦人 阅读(158)
评论(0) 编辑 收藏 所属分类:
Other
javaURL编码:java.net.URLEncoder.encode(strMi);
解码:java.net.URLDecoder.decode(strMi);
地址栏传参转码
public static String ExChs(String s) {
String sr = "";
if (s == null) {
s = "";
}
try {
sr = new String(s.getBytes("iso-8859-1"), "utf-8");
} catch (Exception e) {
sr = s;
}
return sr;
}