一串中文只有最后字符乱码的解决

一串中文只有最后个字符乱码时,用url提交的时候可以用java.net.URLEncode编码与java.net.URLDecode解码来解决。

页面中

" ><%=map.get("question").toString() %>


servlet中

String question =java.net.URLDecoder.decode(request.getParameter("question"), "utf-8");

你可能感兴趣的:(一串中文只有最后字符乱码的解决)