<%@ 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/xml" prefix="x"%>
<!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>
<style>
body, td, div {
	font-size: 12px; 
}
.source {
	white-space: pre;
	width: 100%; 
	height: 200px; 
	overflow: scroll;
	border: 1px solid #999999; 
	padding: 2px; 
	margin-bottom: 20px; 
}
</style>
</head>
<body>
<c:import var="file" url="/sina.xml" charEncoding="UTF-8" />
<div class="source">
<c:out value="${ file }" />
</div>
<x:parse var="doc" doc="${ file }"></x:parse>
新浪 RSS <br/>
版本:<x:out select="$doc/rss/@version" /> <br/>
标题:<x:out select="$doc/rss/channel/title" /> <br/>
来源:<x:out select="$doc/rss/channel/generator" /> <br/>
版权:<x:out select="$doc/rss/channel/copyright" /> <br/>
出版时间:<x:out select="$doc/rss/channel/pubDate" /> <br/>
链接地址:<x:out select="$doc/rss/channel/link"/> <br/>
<c:set var="xml">
	<student description="Software Engineer">
		<name>Helloween</name>
		<age>20</age>
	</student>
</c:set>
</body>
</html>
原文:http://www.cnblogs.com/Nickzerui/p/4545709.html