📄 hello.jsp
字号:
<%@ page contentType="text/html; charset=gb2312" language="java" import="java.sql.*" errorPage="" import="java.util.*"%>
<%@ page info="helloworld分析"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>世界你好</title>
</head>
<body>
<%%>
<%!String getDate()
{
return new java.util.Date().toString();
}
int count=10;
%>
<%@ include file="header.jsp"%>
<div align="center">
<table>
<tr bgcolor="8f0774">
<td>-------------------</td>
</tr>
<%
int i;
//给颜色赋值
String color1="00eeff";
String color2="77cc33";
for(i=1;i<=count;i++)
{
String color="";
if(i%2==0)
color=color1;
else
color=color2;
out.print("<tr bgcolor="+color+"><td>-------------------</td></tr>");
}
%>
</table>
<hr>
当前的时间是:
<%=getDate()%><br>
<font color="#FF0000" size="5" face="华文行楷">
<%out.print("广大JSP爱好者们大家好!!!");%><br>
</font>
<jsp:include page="copy.xml"></jsp:include>
<font color="#0000FF" size="4" face="黑体">
<%=getServletInfo()%>
</font>
</div>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -