0

我正在编写一个必须显示日期的应用程序。现在我想将该日期从当前日期转换为年和月。

我的日期就像 - 2017 年 3 月 29 日。

我想将此日期转换为年和月。

抱歉,我认为您无法理解我的问题。我想要年份和月份中当前日期和以上日期的差异。

对不起我的解释。

4

8 回答 8

3

您可以使用Joda Time 并使用月和年作为单位计算两个 LocalDate 值(这是您在此处得到的)之间的 Period 。

例子

LocalDate dob = new LocalDate(1992, 12, 30);
        LocalDate date = new LocalDate(2010, 12, 29);

        Period period = new Period(dob, date, PeriodType.yearMonthDay());
        System.out.println(period.getYears() + " years and " +
                           period.getMonths() + " months");
于 2012-12-29T09:40:47.990 回答
1

我使用 Calender class 找到了答案。

首先,我找到了两天之间的差异,并使用那几天我找到了年份和月份。

在这里我发布我的代码,我认为这对其他人有帮助。

int days = Integer.parseInt(Utility.getDateDiffString("29/03/2017"));
int years = days/365;
int remainingDays = days - (365*years);
int months = remainingDays/30;

getDateDiffString() 方法。在这种方法中,我们需要传递结束日期

public static String getDateDiffString(String endDate)
    {
        try
        {
            Calendar cal = Calendar.getInstance();

            SimpleDateFormat dateFormat = new SimpleDateFormat("dd/MM/yyyy");
            Date dateTwo = dateFormat.parse(endDate); 

            long timeOne = cal.getTimeInMillis();
            long timeTwo = dateTwo.getTime();
            long oneDay = 1000 * 60 * 60 * 24;
            long delta = (timeTwo - timeOne) / oneDay;

            if (delta > 0) {
                return "" + delta + "";
            }
            else {
                delta *= -1;
                return "" + delta + "";
            }
        }
        catch (Exception e) 
        {
            e.printStackTrace();
        }
        return "";
    }
于 2012-12-29T13:00:05.410 回答
0

使用 Java Calendar类从日期获取年份

Calendar c=Calendar.getInstance();
SimpleDateFormat simpleDateformat=new SimpleDateFormat("yyyy MMM");
System.out.println(simpleDateformat.format(c.getTime()));


To get difference between two date

int diffInDays = (int)( (newerDate.getTime() - olderDate.getTime()) 
                 / (1000 * 60 * 60 * 24) )
于 2012-12-29T09:38:28.753 回答
0

long timeDiff = (d1.getTime() - d2.getTime());

    String diff=String.format("%d year(s) %d day(s) %d hour(s) %d min(s) %d sec(s)",(TimeUnit.MILLISECONDS.toDays(timeDiff)/365),TimeUnit.MILLISECONDS.toDays(timeDiff)%365,
            TimeUnit.MILLISECONDS.toHours(timeDiff)
            - TimeUnit.DAYS.toHours(TimeUnit.MILLISECONDS
            .toDays(timeDiff)),
            TimeUnit.MILLISECONDS.toMinutes(timeDiff)
            - TimeUnit.HOURS.toMinutes(TimeUnit.MILLISECONDS
            .toHours(timeDiff)),
            TimeUnit.MILLISECONDS.toSeconds(timeDiff)
            - TimeUnit.MINUTES.toSeconds(TimeUnit.MILLISECONDS
            .toMinutes(timeDiff)));
    System.out.println(diff);

在 d1 & d2 在这里指定正确的日期。然后你会得到正确的答案

于 2012-12-29T09:40:38.143 回答
0

如果您的日期格式是固定的,您可以这样做:

字符串 myDate = "29/03/2017";

字符串 newDate = myDate.subString(6, 10) + "-" + myDate.subString(3, 5)

于 2012-12-29T09:43:32.750 回答
0

此方法将普通字符串转换为日期格式

String currentDateString = "02/27/2012 17:00:00";
SimpleDateFormat sd = new SimpleDateFormat("mm/dd/yyyy HH:mm:ss");
Date currentDate = sd.parse(currentDateString);

之后你得到正式的方法

于 2012-12-29T09:45:15.197 回答
0

你应该使用SimpleDateFormate

例如:---您可以根据需要获取时间和日期:-

                           Date email_date = m.getSentDate();// this is date which you are getting
            DateFormat date = new SimpleDateFormat("EEE MMM yyyy");
            DateFormat time = new SimpleDateFormat("hh:mm aa");
            String date_str=date.format(email_date);
            String time_str=time.format(email_date);
于 2012-12-29T09:46:19.083 回答
0

首先将您的日期放入一个字符串变量中:

String dateToConvert = "29/03/2017";

将日历实例化为:

Calendar convertedDate = Calendar.getInstance();

将该日期设置为日历

convertedDate.set(dateToConvert);<br/>

然后使用这一行:

String datePicked = DateFormat.getDateInstance().format(convertedDate.getTime());

输出:2017 年 3 月 29 日

于 2020-06-04T15:46:40.500 回答