码迷,mamicode.com
首页 > 编程语言 > 详细

java: i18n语言

时间:2018-01-07 19:56:39      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:tle   cal   text   date()   imp   htm   国际   set   tty   

<%@ page language="java" contentType="text/html; charset=utf8"%>
<%@ page import="java.text.DateFormat,java.util.Locale,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>
<%
Date date = new Date();
DateFormat localDate = DateFormat.getDateInstance(DateFormat.LONG);
DateFormat usaDate = DateFormat.getDateInstance(DateFormat.LONG, Locale.US);
DateFormat garmanDate = DateFormat.getDateInstance(DateFormat.LONG, Locale.GERMAN);
DateFormat italyDate = DateFormat.getDateInstance(DateFormat.LONG, Locale.ITALY);
DateFormat frenchDate = DateFormat.getDateInstance(DateFormat.LONG, Locale.FRENCH);
%>


本地日期:<%=localDate.format(date) %><br/>
美国日期:<%=usaDate.format(date) %><br/>
德国日期:<%=garmanDate.format(date) %><br/>
意大利日期:<%=italyDate.format(date) %><br/>
法国日期:<%=frenchDate.format(date) %>

</body>
</html>

  

java: i18n语言

标签:tle   cal   text   date()   imp   htm   国际   set   tty   

原文地址:https://www.cnblogs.com/achengmu/p/8228914.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!