zoukankan      html  css  js  c++  java
  • <fmt:setLocale/>显示所有地区的数据格式

    <%@ page language="java" contentType="text/html; charset=UTF-8"%>
    <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
    <%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%>
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <%@page import="java.util.Locale"%>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>Insert title here</title>
    <style type="text/css">
    table, td, tr {font-size: 12px; }
    table {
    border-collapse: collapse;
    border: 1px solid #000000;
    }
    td, th {
    border: 1px solid #000000;
    padding: 2px;
    padding-left: 10px;
    padding-right: 10px;
    }
    .title {
    background: #EEEEEE;
    }
    .title td {
    text-align: center;
    }
    </style>
    </head>
    <body>

    <%
    request.setAttribute("localeList", Locale.getAvailableLocales());
    %>


    <table>
    <tr class="title">
    <th>Locale</th>
    <th>Language</th>
    <th>Date and Time</th>
    <th>Number</th>
    <th>currency</th>
    </tr>

    <jsp:useBean id="date" class="java.util.Date"></jsp:useBean>

    <c:forEach var="locale" items="${ localeList }">
    <fmt:setLocale value="${ locale }" />
    <tr>
    <td align="left">${ locale.displayName }</td>
    <td align="left">${ locale.displayLanguage }</td>
    <td><fmt:formatDate value="${ date }" type="both"/></td>
    <td><fmt:formatNumber value="10000.5" /></td>
    <td><fmt:formatNumber value="10000.5" type="currency" /> </td>
    </tr>
    </c:forEach>

    </table>

    </body>
    </html>

  • 相关阅读:
    Win7+CentOS7双系统安装
    python中的 __getattr__ __setattr__ __getitem__ __add__
    对象.函数名 叫方法 和 类.函数名 叫函数
    python中的__str__ __name__ 和__call__方法
    flask中的登录验证 装饰器版 befor_request版
    装饰器
    Django model中的 class Meta 详解
    跨域问题cors
    reids缓存
    python-django目录
  • 原文地址:https://www.cnblogs.com/Nickzerui/p/4546782.html
Copyright © 2011-2022 走看看