<%@page import="java.text.SimpleDateFormat"%>
<%@page import="java.io.File"%>
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%
    String realPath = application.getRealPath(request.getServletPath());
    File thisFile = new File(realPath);
    SimpleDateFormat sdf = new SimpleDateFormat("yyyy.MM.dd HH:mm:ss");
    String modifiedDT = sdf.format(thisFile.lastModified());
%>