zoukankan      html  css  js  c++  java
  • <fmt:formatDate/>格式化日期

    <%@ 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"%>
    <%@page import="java.lang.reflect.Field"%>
    <%@page import="java.util.ArrayList"%>
    <%@page import="java.util.List"%>
    <%@page import="java.util.Date"%>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>Insert title here</title>
    <style type="text/css">
    body{
    font-size: 14px;
    }
    table {
    border-collapse: collapse;
    border: 1px solid #000000;
    margin-top: 5px;
    }
    td {
    border: 1px solid #000000;
    padding: 2px;
    text-align: center;
    font-size: 12px;
    }
    .title td {
    background: #EEEEEE;
    100px;
    }
    </style>
    </head>
    <body>

    <%
    Field[] field = Locale.class.getFields();

    List<Locale> localeList = new ArrayList<Locale>();

    for(int i=0; i<field.length; i++){
    if(field[i].getType().equals(Locale.class)){
    localeList.add((Locale)field[i].get(null));
    }
    }

    request.setAttribute("localeList", localeList);
    %>


    <table>
    <tr>
    <td>Locale</td>
    <td>Date and Time</td>
    <td>Number</td>
    <td>currency</td>
    </tr>

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

    <c:forEach var="locale" items="${ localeList }">
    <fmt:setLocale value="${ locale }"/>
    <tr>
    <td>${ locale }</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>

  • 相关阅读:
    Linux基础命令---nfsstat显示nfs信息
    Linux基础命令----smbclient
    Myeclipse10下载,安装,破解,插件,优化介绍
    MyEclipse常用插件使用教程
    MyEclipse10 中的两种FreeMarker插件的安装与配置
    导入项目名称重复
    append,appendTo和prepend #1daae2
    Java Session超时设置
    jquery刷新页面
    windows不能显示此连接属性。windows management instrumentation (WMI) 信息可能损坏
  • 原文地址:https://www.cnblogs.com/Nickzerui/p/4542008.html
Copyright © 2011-2022 走看看