⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dateexample.jsp

📁 jsp 应用开发技术光盘 是《jsp应用开发技术》这本书的源代码
💻 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 + -