Java中文乱码总结

纵然是瞬间 提交于 2020-10-23 05:46:36

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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!