JSP 页面,在页面中,输入一个年份,判断并输出该年是不是闰年。基础代码
时间: 2024-09-09 09:06:52 浏览: 57
JSP(Java Server Pages)是一个基于Java的网页技术,用于动态生成HTML内容。在JSP中,你可以嵌入Java代码片段来处理用户的输入,比如判断闰年的逻辑。以下是一个简单的JSP页面示例,用户可以输入一个年份,然后服务器端会通过Java代码进行判断:
```jsp
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<title>判断闰年</title>
</head>
<body>
<form action="isLeapYear.jsp" method="post">
<label for="year">请输入一个年份:</label>
<input type="number" id="year" name="year" required>
<input type="submit" value="判断是否为闰年">
</form>
<%@ include file="commonFunctions.jsp" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<c:if test="${isLeapYear(year)}">
${year}是闰年。
</c:if>
<c:otherwise>
${year}不是闰年。
</c:otherwise>
</body>
</html>
// commonFunctions.jsp (假设在这个文件中有isLeapYear函数)
<%
public boolean isLeapYear(int year) {
if (year % 4 == 0 && (year % 100 != 0 || year % 400 == 0)) {
return true;
} else {
return false;
}
}
%>
阅读全文