@import url(http://www.blogjava.net/CuteSoft_Client/CuteEditor/Load.ashx?type=style&file=SyntaxHighlighter.css);@import url(/css/cuteeditor.css);
这个问题是因为outputstream输出中文字造成的.换成Writer就好了。outputstream是以字节为单位输出字符串的,需要符合那个ISO 8859-1编码
response.setContentType("text/html;charset=UTF-8");
//response.getOutputStream().print("中文字"); //这行会出错
response.getWriter().print("中文字"); //换成这个就好了
response.getWriter().close();
posted on 2011-12-21 15:26
Ke 阅读(1268)
评论(0) 编辑 收藏 所属分类:
exception