java: i18n语言

<%@ 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>

  

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