网站导航免费论文 原创论文 论文搜索 原创论文 网学软件 学术大家 资料中心 会员中心 问题解答 原创论文 大学论文导航 设计下载 最新论文 下载排行 原创论文 论文源代码
返回网学首页
网学联系
最新论文 推荐专题 热门论文 素材专题
当前位置: 网学 > 编程文档 > JSP > 正文

JSP 国际化-格式化货币和日期

来源:http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 14/07/14

网学网为需要JSP的朋友们搜集整理了JSP 国际化-格式化货币和日期相关资料,希望对各位网友有所帮助!

  1.格式化货币

  世界上许多国家都有不同的货币格式和数字格式惯例。针对特定的本地化环境正确地格式化和显示货币是本地化的一个重要部分。

  <%@ page pageEncoding="UTF-8" %>
  <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
  <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>

  <html>
  <head>

  <title>Currency Formatting</title>
  </head>
  <body>
  <h1>Currency Formatting and locales</h1>

  <h3>English, Great Britain</h3>
  <fmt:setLocale value="en_GB" />
  <fmt:formatNumber type="currency" value="80000" /><br/>

  <h3>English, USA</h3>
  <fmt:setLocale value="en_US" />
  <fmt:formatNumber type="currency" value="80000" /><br/>

  <h3>French, France</h3>
  <fmt:setLocale value="fr_FR" />
  <fmt:formatNumber type="currency" value="80000" /><br/>

  <h3>Japanese, Japan</h3>
  <fmt:setLocale value="ja_JP" />
  <fmt:formatNumber type="currency" value="80000" /><br/>

  <h3>Korean, Korea</h3>
  <fmt:setLocale value="ko_KR" />
  <fmt:formatNumber type="currency" value="80000" /><br/>

  <h3>Spanish, Spain</h3>
  <fmt:setLocale value="es_ES" />
  <fmt:formatNumber type="currency" value="80000" /><br/>

  <h3>Arabic, Egypt</h3>
  <fmt:setLocale value="ar_EG" />
  <fmt:formatNumber type="currency" value="80000" /><br/>

  <h3>Using Local Numeric Formatting for Different Currency</h3>
  <h4>English, Great Britan</h4>
  <fmt:setLocale value="en_GB" />
  <fmt:formatNumber type="currency" value="80000" /><br/>
  <fmt:formatNumber type="currency" value="80000" currencyCode="EUR"/><br/>

  </body>
  </html>

  2.格式化日期

  类似于数字和货币格式化,本地化环境还会影响生成日期和时间的方式。

  <%@ page pageEncoding="UTF-8" %>
  <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
  <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>

  <html>
  <head>
  <title>Date Formatting</title>
  </head>
  <body>
  <h1>Date Formatting and locale</h1>
  <fmt:timeZone value="EST">
  <jsp:useBean id="currentTime" class="java.util.Date"/>

  <h3>English, Great Britain</h3>
  <fmt:setLocale value="en_GB" />
  <fmt:formatDate type="both" dateStyle="full" timeStyle="full" value="${currentTime}" /><br/>

  <h3>English, USA</h3>
  <fmt:setLocale value="en_US" />
  <fmt:formatDate type="both" dateStyle="full" timeStyle="full" value="${currentTime}" /><br/>

  <h3>French, France</h3>
  <fmt:setLocale value="fr_FR" />
  <fmt:formatDate type="both" dateStyle="full" timeStyle="full" value="${currentTime}" /><br/>

  <h3>Japanese, Japan</h3>
  <fmt:setLocale value="ja_JP" />
  <fmt:formatDate type="both" dateStyle="full" timeStyle="full" value="${currentTime}" /><br/>

  <h3>Korean, Korea</h3>
  <fmt:setLocale value="ko_KR" />
  <fmt:formatDate type="both" dateStyle="full" timeStyle="full" value="${currentTime}" /><br/>

  <h3>Spanish, Spain</h3>
  <fmt:setLocale value="es_ES" />
  <fmt:formatDate type="both" dateStyle="full" timeStyle="full" value="${currentTime}" /><br/>  
  <h3>Arabic, Egypt</h3>
  <fmt:setLocale value="ar_EG" />
  <fmt:formatDate type="both" dateStyle="full" timeStyle="full" value="${currentTime}" /><br/>

  </fmt:timeZone>
  </body>
  </html>

  <fmt:formatDate>动作的属性

  type: 可以是time,date或both。控制是否只生成时间,只生成日期,或者时间日期都生成。

  dateStyle: 可以是short, medium, long 或 full(default)。控制打印日期使用的具体格式。

  timeStyle: 可以是short, medium, long 或 full(default)。控制打印时间使用的具体格式。

  value: 这是一个java.util.Date 类型的值,用于生成日期和时间。

网学推荐

免费论文

原创论文

设为首页 | 加入收藏 | 论文首页 | 论文专题 | 设计下载 | 网学软件 | 论文模板 | 论文资源 | 程序设计 | 关于网学 | 站内搜索 | 网学留言 | 友情链接 | 资料中心
版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved 湘ICP备09003080号