码迷,mamicode.com
首页 > 编程语言 > 详细

Java中文乱码总结

时间:2020-07-29 17:36:13      阅读:77      评论:0      收藏:0      [点我收藏+]

标签:eclips   ips   charset   tchar   span   file   let   gbk   import   

1.html 乱码

1 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 

 


2.jsp 乱码
页面开头加入

<%@ page language="java" import="java.util.*" contentType ="text/html; charset=utf-8"
pageEncoding="utf-8"%>

 

3.xmlHttpRequest 乱码

<%@ page contentType ="text/html;charset=GBK"%>

 

4.Servlet 乱码
在方法中 加入这两句

request.setCharacterEncoding("utf-8");
response.setContentType("text/html;charset=utf-8");

 


5.中文注释乱码
原因:Eclipse中对Text file encoding的默认编码是GBK

解决:

  Eclipse->右击"工程",将Info中的"Text file encoding"中的Other改为UTF-8
  MyEclipse ->pro -> Text file encoding ->Other  utf-8

Java中文乱码总结

标签:eclips   ips   charset   tchar   span   file   let   gbk   import   

原文地址:https://www.cnblogs.com/withlamb/p/13398064.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!