smartupload.jar 中文获取文字乱码
(2013-05-24 15:11:24)
标签:
it |
分类: web开发 |
smartupload.jar中午获取文字乱码解决:
String newsTitle = new String(smartupload.getRequest().getParameter("newstitle").trim().getBytes(),"utf-8");
其中,smartupload为实例的jspSmartUpload的实例名称;newstitle为文本框的name属性名称;

加载中…