📄 dateexample.jsp
字号:
<%@ 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -