Skip to content

Instantly share code, notes, and snippets.

@seyan
Created March 10, 2011 12:07
Show Gist options
  • Save seyan/864005 to your computer and use it in GitHub Desktop.
Save seyan/864005 to your computer and use it in GitHub Desktop.
<%@ page language="java" contentType="text/html; charset=utf-8"
pageEncoding="utf-8"%>
<%
//現在時刻を取得
java.util.Date nowTime = new java.util.Date();
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>現在時刻を表示</title>
</head>
<body>
現在時刻: <%= nowTime %>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment