Java中的DateFormatSymbols类的getMonths()方法用于以字符串格式获取日历月份的名称。
用法:
public String[] getMonths()
参数:该方法不带任何参数。
返回值:该方法以字符串格式返回月份的名称。
以下示例程序旨在说明getMonths()方法的使用。
示例1:
// Java code to demonstrate getMonths()
import java.text.DateFormatSymbols;
public class DateFormat_Main {
public static void main(String args[])
{
int i;
// Initializing DateFormatSymbols
String months[]
= new DateFormatSymbols().getMonths();
for (i = 0; i < months.length - 1; i++) {
// Displaying the months
System.out.println("Month = "
+ months[i]);
}
}
}
输出:
Month = January Month = February Month = March Month = April Month = May Month = June Month = July Month = August Month = September Month = October Month = November Month = December
示例2:
// Java code to demonstrate getMonths()
import java.text.DateFormatSymbols;
public class DateFormat_Main {
public static void main(String args[])
{
int i;
// Initializing DateFormatSymbols
String months[]
= new DateFormatSymbols().getMonths();
for (i = 0; i < months.length / 2; i++) {
// Displaying the months
System.out.println("Month " + i
+ " = " + months[i]);
}
}
}
输出:
Month 0 = January Month 1 = February Month 2 = March Month 3 = April Month 4 = May Month 5 = June
参考: https://docs.oracle.com/javase/8/docs/api/java/text/DateFormatSymbols.html#getMonths–
相关用法
- Java Period getMonths()用法及代码示例
- Java DateFormatSymbols setWeekdays()用法及代码示例
- Java DateFormatSymbols setShortWeekdays()用法及代码示例
- Java DateFormatSymbols setShortMonths()用法及代码示例
- Java DateFormatSymbols setMonths()用法及代码示例
- Java DateFormatSymbols getShortWeekdays()用法及代码示例
- Java DateFormatSymbols getShortMonths()用法及代码示例
- Java DateFormatSymbols getEras()用法及代码示例
- Java DateFormatSymbols getWeekdays()用法及代码示例
- Java DateFormatSymbols getAvailableLocales()用法及代码示例
- Java DateFormatSymbols getAmPmStrings()用法及代码示例
- Java Java.util.Collections.rotate()用法及代码示例
- Java Java lang.Long.highestOneBit()用法及代码示例
- Java Java lang.Long.numberOfTrailingZeros()用法及代码示例
- Java Java lang.Long.byteValue()用法及代码示例
注:本文由纯净天空筛选整理自Chinmoy Lenka大神的英文原创作品 DateFormatSymbols getMonths() Method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。