gpt4 book ai didi

android - 日期语言

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:55:03 24 4
gpt4 key购买 nike

我想用法语打印日期。例如“Janvier”而不是“January”。

我正在使用这个:

    SimpleDateFormat mDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss",Locale.FRENCH);
Date date = null;
try {
date = mDateFormat.parse(document.date);
} catch (ParseException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}

但它不起作用!

有人知道我该怎么做吗?

最佳答案

试试这个...

public class FormatDateLocale {
public static void main(String[] args) {
//
// Defines an array of Locale we are going to use for
// formatting date information.
//
Locale[] locales = new Locale[] {
Locale.JAPAN,
Locale.CHINA,
Locale.KOREA,
Locale.TAIWAN,
Locale.ITALY,
Locale.FRANCE,
Locale.GERMAN
};

// Get an instance of current date time
Date today = new Date();

//
// Iterates the entire Locale defined above and create a long
// formatted date using the SimpleDateFormat.getDateInstance()
// with the format, the Locale and the date information.
//
for (Locale locale : locales) {
System.out.println("Date format in "
+ locale.getDisplayName()
+ " = "
+ SimpleDateFormat.getDateInstance(
SimpleDateFormat.LONG, locale)
.format(today).toUpperCase());
}
}
}

我们代码的结果是:

Date format in Japanese (Japan) = 2009/01/04
Date format in Chinese (China) = 2009年1月4日
Date format in Korean (South Korea) = 2009년 1월 4일 (일)
Date format in Chinese (Taiwan) = 2009年1月4日
Date format in Italian (Italy) = 4 GENNAIO 2009
Date format in French (France) = 4 JANVIER 2009
Date format in German = 4. JANUAR 2009

来源链接:http://www.kodejava.org/examples/415.html

关于android - 日期语言,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9904518/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com