weather.jsp
来自「< 网络机器人java编程指南>>的配套源程序」· JSP 代码 · 共 18 行
JSP
18 行
<%@page import="com.heaton.bot.weather.*" %>
<html><head><title>Current Weather</title></head>
<body>
<h1>Current Weather</h1>
<table border=0>
<%
Weather a[] = Weather.getList();
for(int i=0;i<a.length;i++)
{%>
<tr><td><%=a[i].city%> </td><td><%=a[i].deg%> F</td></tr>
<% }
Weather.fileAggregate("wxtest.html");
%>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?