gpt4 book ai didi

java - 如何从模式 dd-MMM-yyyy 中的给定字符串日期获取整数中的日月和年

转载 作者:行者123 更新时间:2023-12-02 04:58:36 24 4
gpt4 key购买 nike

我有一个格式为 (dd-MMM-yyyy) 的字符串日期例如(2019 年 9 月 23 日)。我想以整数的形式将日月和年与上面的字符串分开,例如日= 23,月= 09,年= 2019

最佳答案

String pattern = "dd-MMM-yyyy";
SimpleDateFormat simpleDateFormat = new SimpleDateFormat(pattern);
Date date = simpelDateFormat.parse(yourdateString);
Calendar now = Calendar.getInstance();
now.setTime(date);
int year = now.get(Calendar.YEAR);
int month = now.get(Calendar.MONTH) + 1; // Note: zero based!
int day = now.get(Calendar.DAY_OF_MONTH);

关于java - 如何从模式 dd-MMM-yyyy 中的给定字符串日期获取整数中的日月和年,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56397598/

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