- Java 编程示例
- 示例 - 主页
- 示例 - 环境
- 示例 - 字符串
- 示例 - 数组
- 示例 - 日期和时间
- 示例 - 方法
- 示例 - 文件
- 示例 - 目录
- 示例 - 异常
- 示例 - 数据结构
- 示例 - 集合
- 示例 - 网络
- 示例 - 线程
- 示例 - 小程序
- 示例 - 简单 GUI
- 示例 - JDBC
- 示例 - 正则表达式
- 示例 - Apache PDF Box
- 示例 - Apache POI PPT
- 示例 - Apache POI Excel
- 示例 - Apache POI Word
- 示例 - OpenCV
- 示例 - Apache Tika
- 示例 - iText
- Java 教程
- Java - 教程
- Java 实用资源
- Java - 快速指南
- Java - 实用资源
如何在 Java 中以简短格式显示月份名称
问题描述
如何以简短格式显示月份名称?
解决方案
此示例借助 DateFormatSymbols 类的 DateFormatSymbols().getShortMonths() 方法显示月份名称的简短格式。
import java.text.SimpleDateFormat; import java.text.DateFormatSymbols; public class Main { public static void main(String[] args) { String[] shortMonths = new DateFormatSymbols().getShortMonths(); for (int i = 0; i < (shortMonths.length-1); i++) { String shortMonth = shortMonths[i]; System.out.println("shortMonth = " + shortMonth); } } }
结果
上面的代码示例会生成以下结果。
shortMonth = Jan shortMonth = Feb shortMonth = Mar shortMonth = Apr shortMonth = May shortMonth = Jun shortMonth = Jul shortMonth = Aug shortMonth = Sep shortMonth = Oct shortMonth = Nov shortMonth = Dec
以下为日期、时间和简短月份的另一个示例。
import java.text.Format; import java.text.SimpleDateFormat; import java.util.Date; import java.util.Locale; import java.util.Calendar; public class Main { public static void main(String[] argv) throws Exception { String str1 = "dd-MMM-yy"; Date d = Calendar.getInstance().getTime(); SimpleDateFormat sdf = new SimpleDateFormat(str1, Locale.FRENCH); System.out.println(sdf.format(d)); sdf = new SimpleDateFormat(str1, Locale.ENGLISH); System.out.println(sdf.format(d)); } }
结果
上面的代码示例会生成以下结果(结果取决于当前日期。
11-nov.-16 11-Nov-16
java_date_time.htm
广告