在网上查到说是:“包含页面与被包含页面的@page指令里面的contentType不一致,仔细检查两个文件第一行的 @page.....”
我自己的情况是:jsp自动生成的页面内page标签中字符藉为ISO-8859-1. (html页面中黑体、加粗那行)
而我整个工程页面默认引用页面的字符藉是UTF-8.所以改为和别的页面一致,就不报错了。
代码语言:javascript复制<%@ page language="java" contentType="text/html;charset=UTF-8" pageEncoding="UTF-8" %>
<% String path = request.getContextPath();
String basePath = request.getScheme() "://" request.getServerName() ":" request.getServerPort() path "/";%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
这是广告 页面。。。。
</body>
</html>
<% String path = request.getContextPath();
String basePath = request.getScheme() "://" request.getServerName() ":" request.getServerPort() path "/";%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
这是广告 页面。。。。
</body>
</html>