jsp 使用include文件时字符集问题

在一个login.jsp中
使用了
<%@ page contentType="text/html;charset=GBK"%>
<%@ include file="top.jsp" %>

而top.jsp中也用的GBK
可是老是报错:
Page directive: illegal to have multiple occurrences of contentType with different values (old: text/html;charset=GBK, new: text/html; charset=GBK)
由于一直没有仔细看报错信息,郁闷得不知道是什么回事
终于仔细看了看报错信息,发现
top.jsp中是这样的<%@ page contentType="text/html; charset=GBK"%>
比login.jsp中多了一个空格。
去掉charset和分号之间的空格就ok了!
汗啊,自己太不仔细了!

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