首页上一页 1 下一页尾页 1 条记录 1/1页
《Java Web开发实战宝典》第7章得例7.11
发表在JavaWeb图书答疑
2011-08-08
是否精华
是
否
版块置顶:
是
否
[font color=#0000FF]在《Java Web开发实战宝典》第7章得例7.11中,运用c:import显示天气预报,我按照书上的程序运行了一遍,结果出来的结果和书上的运行结果不一样,网上查了有关的资料,很少,看到一个说是网站代理的问题,我不懂,希望客服或是哪位高手帮忙解释下,为什么用了c:import标签,显示不出别的网页里的信息,那个网页程序很少,如下:
<%@ page language="java" pageEncoding="utf-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<html>
<head>
<title>应用<c:import>标签在网页中显示天气预报</title>
</head>
<body>
<c:catch var="error">
<c:import url="http://m.weather.com.cn/m/p5/weather1.htm" charEncoding="utf-8"/>
</c:catch>
<c:if test="${!empty error }">
该网站不存在,请确认是否登陆到Internet!
</c:if>
</body>
</html>[/font]
<%@ page language="java" pageEncoding="utf-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<html>
<head>
<title>应用<c:import>标签在网页中显示天气预报</title>
</head>
<body>
<c:catch var="error">
<c:import url="http://m.weather.com.cn/m/p5/weather1.htm" charEncoding="utf-8"/>
</c:catch>
<c:if test="${!empty error }">
该网站不存在,请确认是否登陆到Internet!
</c:if>
</body>
</html>[/font]