본문 바로가기

기존카테고리/JSP

현재시간

<%@ page language="java" contentType="text/html; charset=UTF-8"

pageEncoding="UTF-8"%>

<%@ page import="java.sql.Timestamp" %>

<%@ page import="java.text.SimpleDateFormat" %>

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>Insert title here</title>

</head>

<body>

<%

Timestamp now = new Timestamp(System.currentTimeMillis());

SimpleDateFormat formats = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");

String strDate = formats.format(now);

%>

현재시간: <%=strDate %>

</body>

</html>

'기존카테고리 > JSP' 카테고리의 다른 글

filter  (0) 2020.04.24
ArrayList 형변환  (0) 2020.04.17
자바빈  (0) 2020.04.08
예외처리  (0) 2020.04.08
MVC2 패턴의 게시판 구조 이해  (0) 2017.06.21