要是需要GPT Plus账号的小伙伴可以联系我~
在Java中,获取当前年份和月份有以下几种常见的方法:
- 使用java.time.LocalDate类:
import java.time.LocalDate; // 获取当前日期 LocalDate currentDate = LocalDate.now(); // 获取当前年份 int year = currentDate.getYear(); // 获取当前月份 int month = currentDate.getMonthValue();
- 使用java.util.Calendar类:
import java.util.Calendar; // 获取当前日历实例 Calendar calendar = Calendar.getInstance(); // 获取当前年份 int year = calendar.get(Calendar.YEAR); // 获取当前月份(月份从0开始,所以需要加1) int month = calendar.get(Calendar.MONTH) + 1;
- 使用java.util.Date类与java.text.SimpleDateFormat类:
import java.util.Date; import java.text.SimpleDateFormat; // 获取当前日期 Date currentDate = new Date(); // 创建SimpleDateFormat实例,指定日期格式 SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM"); // 格式化日期为字符串 String formattedDate = sdf.format(currentDate); // 从格式化后的字符串中提取年份和月份 int year = Integer.parseInt(formattedDate.substring(0, 4)); int month = Integer.parseInt(formattedDate.substring(5));
如果您觉得我所提供的信息对您有帮助,欢迎您点赞、收藏和评论。如果您想要更深入的交流,您可以添加我的微信号,或者关注我的微信公众号。您的支持和鼓励是我持续写作的动力,我期待与您互动并提供更多有价值的信息。
猜你喜欢
网友评论
- 搜索
- 最新文章
- 热门文章