Open luckyhua opened 7 years ago
jsp内容乱码?
jsp正常,java代码中文乱码
` /**
*/ @Controller @RequestMapping("/admin/blog") public class BlogAdminController {
@Resource private BlogService blogService; @Resource private CommentService commentService;
private BlogIndex blogIndex = new BlogIndex();
//��Ӻ��²��� @RequestMapping("/save") public String save(Blog blog, HttpServletResponse response) throws Exception {
int resultTotal = 0; //���շ��ؽ����¼��
if(blog.getId() == null) { //˵���ǵ�һ�β���
resultTotal = blogService.addBlog(blog);
blogIndex.addIndex(blog); //��Ӳ��͵�����
} else { //��id��ʾ��
resultTotal = blogService.update(blog);
blogIndex.updateIndex(blog);
}
`
我感觉你换下gbk应该就不乱码了
换了一样
全问号了
他java文件的编码方式是GBK的
写的时候可能就不统一,你现在要改的话估计也麻烦
是的,我刚把项目的编码改过GB2312,就全问号了,sql语句中文也是,我就自己到这里copy了一份
是GBK,不是GB2312,你换成GBK就都正常了
GBK可以
有点麻烦
是啊 怎么还有这种问题... 竟然不是utf-8.... 瞬间不想看了
为什么我用idea导入之后全是乱码,jsp正常,我项目编码都设置的utf-8