集册 Java实例教程 使用自定义格式格式化时间

使用自定义格式格式化时间

欢马劈雪     最近更新时间:2020-01-02 10:19:05

480
使用自定义格式格式化时间

import java.text.Format;

import java.text.SimpleDateFormat;

import java.util.Date;

/*
来 自*
 n o w j a v a . c o m - 时代Java
*/

public class Main {


  public void m() {

    Format formatter;


    // The hour (1-12)

    formatter = new SimpleDateFormat("h"); // 8

    formatter = new SimpleDateFormat("hh"); // 08


    // The hour (0-23)

    formatter = new SimpleDateFormat("H"); // 8

    formatter = new SimpleDateFormat("HH"); // 08
/**来 自 nowjava - 时代Java**/

    // The minutes

    formatter = new SimpleDateFormat("m"); // 7

    formatter = new SimpleDateFormat("mm"); // 07


    // The seconds

    formatter = new SimpleDateFormat("s"); // 3

    formatter = new SimpleDateFormat("ss"); // 03


    // The am/pm marker

    formatter = new SimpleDateFormat("a"); // AM


    // The time zone

    formatter = new SimpleDateFormat("z"); // PST

    formatter = new SimpleDateFormat("zzzz"); // Pacific Standard Time

    formatter = new SimpleDateFormat("Z"); // -0800


    // Get today's date

    Date date = new Date();

展开阅读全文