JSP——java代码块在JSP中的使用

<%@page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <%@page import="java.util.Date" %> <%@page import="java.text.DateFormat" %> <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>TodaysDate</title> </head> <body> <% DateFormat dateFormat = DateFormat.getDateInstance(DateFormat.LONG); String str = dateFormat.format(new Date()); out.println("Today is " + str); %> </body> </html>

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zgzysz.html