我总结的中文处理问题.txt

时间:2011-10-23 12:58:20
【文件属性】:
文件名称:我总结的中文处理问题.txt
文件大小:1KB
文件格式:TXT
更新时间:2011-10-23 12:58:20
我总结的中文处理问题.txt <%! public static String change(String str) { String temp = ""; try { temp = new String(str.getBytes("ISO-8859-1"), "GBK").trim(); } catch (Exception e) { e.printStackTrace(); } return temp; }%>

网友评论