要在JSP页面使用JSTL语言,首先要在页面引入前缀:
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
这样在页面就可以使用JSTL语言了,例如设置页面语言编码,传统的写法为:
<%
request.setCharacterEncoding("GB2312");
%>
使用JSTL写法时,必须使用I18N格式处理的标签库,写法为:
<fmt:requestEncoding value="GB2312" />
输出内容写法:
<c:out value="这里是使用JSTL输出的"/>