fn:escapeXml()实现HTML编码

<%@ page language="java" contentType="text/html; charset=UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%>
<!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>

<c:import var="source" url="http://www.baidu.com" charEncoding="gbk"></c:import>

<c:out value="${source}" escapeXml="true"></c:out>

<hr/>
${ fn:escapeXml(source) }
<hr>

</body>
</html>

posted @ 2015-06-01 09:56  Nick_zerui  阅读(1943)  评论(0编辑  收藏  举报