当前位置: 代码迷 >> HTML/CSS >> html与jsp指定编码的形式不一样的
  详细解决方案

html与jsp指定编码的形式不一样的

热度:136   发布时间:2013-01-28 11:49:56.0
html与jsp指定编码的方式不一样的

  • html:

<head>
	<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
	<title>Welcome</title> 
</head>

  • jsp:

<head>
	<%@ page contentType="text/html; charset=gb2312"%>
	<title>Welcome</title> 
</head>


  相关解决方案