dateexample.jsp
来自「jsp 应用开发技术光盘 是《jsp应用开发技术》这本书的源代码」· JSP 代码 · 共 22 行
JSP
22 行
<%@ page contentType="text/html;charset=gb2312" language="java"%><%@ page import="java.text.DateFormat,java.util.*" %><% Date now = new Date(); DateFormat theDate = DateFormat.getDateInstance(DateFormat.LONG); DateFormat usDate = DateFormat.getDateInstance(DateFormat.LONG, Locale.US); DateFormat germanDate = DateFormat.getDateInstance(DateFormat.LONG, Locale.ITALY); DateFormat frenchDate = DateFormat.getDateInstance(DateFormat.LONG, Locale.FRANCE);%><html><head> <title>日期的国际化</title></head><body>本地日期:<%=theDate.format(now)%><br>美国日期:<%=usDate.format(now)%><br>德国日期:<%=germanDate.format(now)%><br>法国日期: <%=frenchDate.format(now)%><br></body></html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?