html与jsp指定编码的形式不一样的
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>