<%--
/**
* Prints current date.
*
* @author Sofoklis Stouraitis
*/
--%>
<%-- Import necessary libs --%>
<%@ page import="java.util.Date, java.text.SimpleDateFormat" %>
<%-- Set content type --%>
<%@ page contentType="text/html; charset=windows-1253" %>
<html>
<head>
<title>Η σελίδα test.jsp</title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1253">
<link rel="stylesheet" href="css/style.css" type="text/css"/>
</head>
<body>
<div id="page">
<p><img src="images/DET_Logo_70.gif" width="70px;" height="94px;"></p>
<h1>Τμήμα Διοικητικής Επιστήμης και Τεχνολογίας</h1>
<p>
<strong>Ημερομηνία:</strong>
<i><%= getCurrentDate() %></i>
</p>
</div>
</body>
</html>
<%!
/**
* This method returns current date in String.
*
* @return String.
*/
public String getCurrentDate() {
Date now = new Date();
String date_format = "EEEE, d MMM yyyy HH:mm:ss";
SimpleDateFormat sdf = new SimpleDateFormat(date_format);
return sdf.format(now);
}
%>
|