cmnauthenticate.jsp
来自「Jsp做的网络邮件管理系统」· JSP 代码 · 共 22 行
JSP
22 行
<%@page contentType="text/html;charset=gbk" %>
<%@page language="java" import="java.util.*" %>
<%
String sShowDate = "";
if(session.getAttribute("username") == null )
{
response.sendRedirect("login.jsp");
}
else
{
Calendar currTime = new GregorianCalendar();
int iYear = currTime.get(currTime.YEAR);
int iMonth = currTime.get(currTime.MONTH);
int iDay = currTime.get(currTime.DAY_OF_MONTH);
int iWeek = currTime.get(currTime.DAY_OF_WEEK);
String[] sWeeks = { "日", "一", "二", "三", "四", "五", "六" };
sShowDate = iYear + "年" + (iMonth+1) + "月" + iDay + "日 星期" + sWeeks[iWeek-1];
}
%>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?