集册 Java实例教程 格式化和解析区域设置的时间

格式化和解析区域设置的时间

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

520
格式化和解析区域设置的时间

import java.text.DateFormat;//from 时 代 J a v a 公 众 号 - nowjava.com

import java.text.ParseException;

import java.text.SimpleDateFormat;

import java.util.Date;

import java.util.Locale;


public class Main {

  public static void main(String[] argv) {

    Locale locale = Locale.FRENCH;


    // Format with a custom format

    DateFormat formatter = new SimpleDateFormat("HH:mm:ss zzzz", locale);

    String s = formatter.format(new Date());


    // Format with a default format/*时 代 J a v a - N o w J a v a . c o m 提供*/

    s = DateFormat.getTimeInstance(DateFormat.MEDIUM, locale)

        .format(new Date());


    try {

      formatter = new SimpleDateFormat("HH:mm:ss Z", locale);

      Date date = (Date) formatter.parse("21:44:07 Heure normale du Pacifique");


      
展开阅读全文