我正在尝试将int转换为月份名称(字符串)。我使用简单的日期格式,但我只得到" Jan"所有月份。为什么会这样?
public void onDateSet(DatePickerDialog view, int year, int monthOfYear, int dayOfMonth) {
String sdf = new SimpleDateFormat("LLL", Locale.getDefault()).format(monthOfYear);
String date = +dayOfMonth+" "+(sdf);
dateTextView.setText(date);
答案 0 :(得分:4)
我所有月份只获得“Jan”
因为此处String sdf = new SimpleDateFormat("LLL", Locale.getDefault()).format(monthOfYear);
,monthOfYear
是数字对象,所以DateFormate
类会将其转换为Date
对象,该数字将介于1 Jan, 1970
之间到12 Jan, 1970
所以你总是得到Jan一整个月。
尝试,
Calendar calendar = Calendar.getInstance();
calendar.set(Calendar.MONTH, monthOfYear);
sdf = new SimpleDateFormat("LLL", Locale.getDefault()).format(calendar.getTime());
or
sdf = new DateFormatSymbols().getShortMonths()[monthOfYear];
DateFormat代码段:
/**
* Formats the specified object as a string using the pattern of this date
* format and appends the string to the specified string buffer.
* <p>
* If the {@code field} member of {@code field} contains a value specifying
* a format field, then its {@code beginIndex} and {@code endIndex} members
* will be updated with the position of the first occurrence of this field
* in the formatted text.
*
* @param object
* the source object to format, must be a {@code Date} or a
* {@code Number}. If {@code object} is a number then a date is
* constructed using the {@code longValue()} of the number.
* @param buffer
* the target string buffer to append the formatted date/time to.
* @param field
* on input: an optional alignment field; on output: the offsets
* of the alignment field in the formatted text.
* @return the string buffer.
* @throws IllegalArgumentException
* if {@code object} is neither a {@code Date} nor a
* {@code Number} instance.
*/
@Override
public final StringBuffer format(Object object, StringBuffer buffer, FieldPosition field) {
if (object instanceof Date) {
return format((Date) object, buffer, field);
}
if (object instanceof Number) {
return format(new Date(((Number) object).longValue()), buffer, field);
}
throw new IllegalArgumentException("Bad class: " + object.getClass());
}
答案 1 :(得分:2)
SimpleDateFormat#format()
方法的重载需要Object
,这就是为什么你能够将int
传递给它的原因。但是,这不是您想要的方法。你想要一个带有Date
对象的对象,我们可以从Calendar
获得具有相应月份的对象:
private String getMonthAbbr(int monthOfYear) {
Calendar c = Calendar.getInstance();
c.set(Calendar.MONTH, monthOfYear);
return new SimpleDateFormat("LLL").format(c.getTime());
}
在这种情况下传递Locale.getDefault()
是多余的,因为如果没有另外指定,SimpleDateFormat
将使用{。}}。
答案 2 :(得分:0)
Month.of( yourMonthNumber ).getDisplayName( TextStyle.SHORT_STANDALONE , Locale.CANADA_FRENCH )
java.time.Month
现在在java.time类中更容易实现,这些类取代了这些麻烦的旧遗留日期时间类。
Month
枚举定义了十几个对象,每月一个。
1月至12月的月份编号为1-12。
Month month = Month.of( 2 ); // 2 → February.
要求对象生成name of the month, automatically localized的字符串。调整TextStyle
以指定您想要名称的长度或缩写。指定Locale
来说明翻译应使用哪种人类语言,以及哪些文化规范应决定缩写,标点符号和大小写等问题。
String output = Month.FEBRUARY.getDisplayName( TextStyle.SHORT_STANDALONE , Locale.CANADA_FRENCH );
java.time框架内置于Java 8及更高版本中。这些类取代了麻烦的旧日期时间类,例如java.util.Date
,.Calendar
和&amp; java.text.SimpleDateFormat
。
现在位于Joda-Time的maintenance mode项目建议迁移到java.time。
要了解详情,请参阅Oracle Tutorial。并搜索Stack Overflow以获取许多示例和解释。
大部分java.time功能都被反向移植到Java 6&amp; ThreeTen-Backport中的7,并进一步适应Android中的ThreeTenABP(见How to use…)。
ThreeTen-Extra项目使用其他类扩展java.time。该项目是未来可能添加到java.time的试验场。您可以在此处找到一些有用的课程,例如Interval
,YearWeek
,YearQuarter
等。