我试图在Eclipse上使用doGet方法编写Java Servlet来确定(使用http请求)给定年份是否跳跃。 我写了这个简单的Java代码来完成这个
public class LeapYear {
public static void main(String[] args) {
int year = Integer.parseInt(args[0]);
boolean isLeapYear;
// divisible by 4
isLeapYear = (year % 4 == 0);
// divisible by 4 and not 100
isLeapYear = isLeapYear && (year % 100 != 0);
// divisible by 4 and not 100 unless divisible by 400
isLeapYear = isLeapYear || (year % 400 == 0);
System.out.println(isLeapYear);
}
}
如何将其变成适用于Apache Tomcat 8.5的Servlet? 感谢。