java 国际化时间,Java时间国际化(I18N与时间)

时间的显示格式因地区而异, 因此我们需要国际化时间。

为了使时间国际化, DateFormat类提供了一些有用的方法。

DateFormat类的getTimeInstance()方法返回指定样式和语言环境的DateFormat类的实例。

getTimeInstance()方法的语法如下:

public static DateFormat getTimeInstance(int style, Locale locale)

时间国际化的例子

在此示例中, 我们显示指定语言环境的当前时间。 DateFormat类的format()方法接收日期对象, 并以字符串形式返回格式化和本地化的时间。请注意, Date类的对象同时显示日期和时间。

import java.text.DateFormat;

import java.util.*;

public class InternationalizingTime {

static void printTime(Locale locale){

DateFormat formatter=DateFormat.getTimeInstance(DateFormat.DEFAULT, locale);

Date currentDate=new Date();

String time=formatter.format(currentDate);

System.out.println(time+" in locale "+locale);

}

public static void main(String[] args) {

printTime(Locale.UK);

printTime(Locale.US);

printTime(Locale.FRANCE);

}

}

Output:16:22:49 in locale en_GB

4:22:49 PM in locale en_US

16:22:49 in locale fr_FR

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值
>