java 报错

JSP界面报错为illegal to have multiple occurrences of contentType with different values (old: text/html; charset=UTF-8, new: text/html;charset=utf-8)
报错原因为在jsp页面中含有
<%@ page contentType="text/html;charset=utf-8" language="java"%>
<%@ include file="/jsp/common/base.jsp" %>
因为该jsp页面中的
<%@ page contentType="text/html;charset=utf-8" language="java"%>
与"/jsp/common/base.jsp"的
<%@ page contentType="text/html; charset=UTF-8" language="java"%>
是冲突的,简单的说是不一致的。
方法一:将两边的内容改成一致的即可。
方法二:contentType="text/html;charset=utf-8" 删除,改为pageEncoding="UTF-8"也可解决问题。

你可能感兴趣的:(java,html,jsp)