当前位置: 代码迷 >> Java Web开发 >> 字符编码时为什么转换中文不好使啊!
  详细解决方案

字符编码时为什么转换中文不好使啊!

热度:195   发布时间:2007-08-15 21:36:21.0
字符编码时为什么转换中文不好使啊!

String Chinese=new String((name.getBytes("iso-8859-1")),"gb2312");
System.out.println(Chinese);

----------------------------------
这种方法也不好使
public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {
try {
request.setCharacterEncoding("gb2312");
chain.doFilter(request, response);
} catch (Exception e) {
e.printStackTrace();
}

}
请各位帮帮忙
搜索更多相关主题的帖子: 字符  中文  编码  

----------------解决方案--------------------------------------------------------

有过滤器给你用都是好的了..还嫌啊.你想写00110101101010101.


----------------解决方案--------------------------------------------------------
没办法 只有注意编码
----------------解决方案--------------------------------------------------------
  相关解决方案