zoukankan      html  css  js  c++  java
  • 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>
    

      

  • 相关阅读:
    对象o o[name]和o['name']的差别
    数组转换为字符串
    函数和方法区别
    创建对象和构造函数的区别
    jQuery光源移动效果
    继承原型链
    javascript跨域
    prototype、constructor、__proto__
    寄生组合式继承
    组合继承
  • 原文地址:https://www.cnblogs.com/achengmu/p/8228914.html
Copyright © 2011-2022 走看看