减去 1 小时到日期时间使用 Joda 时间

2022-09-02 23:33:29

我只想从我尝试在Google上查找它的方法中减去1小时,我发现有一种名为减号的方法可以获取日期的副本并在此处获取特定的持续时间:http://www.joda.org/joda-time/apidocs/org/joda/time/DateTime.html#minus(long)DateTime

但我不知道如何使用它,我无法在互联网上找到一个例子。

这是我的代码:

String string1 = (String) table_4.getValueAt(0, 1);
    String string2= (String) table_4.getValueAt(0, 2);

    DateTimeFormatter dtf = DateTimeFormat.forPattern("hh:mm a").withLocale(Locale.ENGLISH);
    DateTime dateTime1 = dtf.parseDateTime(string1.toString());
    DateTime dateTime2 = dtf.parseDateTime(string2.toString());

    final String oldf = ("hh:mm a");
    final String newf= ("hh.mm 0");
    final String newf2= ("hh.mm a");
    final String elapsedformat = ("hh.mm");

    SimpleDateFormat format2 = new SimpleDateFormat(oldf);
    SimpleDateFormat format2E = new SimpleDateFormat(newf); 

    Period timePeriod = new Period(dateTime1, dateTime2);

    PeriodFormatter formatter = new PeriodFormatterBuilder()

     .appendHours().appendSuffix(".")
     .appendMinutes().appendSuffix("")
     .toFormatter();

    String elapsed = formatter.print(timePeriod);

    table_4.setValueAt(elapsed,0,3);

    DecimalFormat df = new DecimalFormat("00.00");
    System.out.println(dateTime1);
    table_4.setValueAt("", 0, 4);
    table_4.setValueAt("", 0, 5);

示例数据:

    dateTime1: 08:00 AM
    dateTime2: 05:00 PM

期限为9小时。但我希望它是8小时,只是因为我想在我的程序中减去午休时间。

我用这个愚蠢的代码尝试了它:

dateTime1.minus(-1) 

我还尝试解析加倍,以便我可以将其减去一。string1

double strindtoD = Integer.parseInt(string1);

我还尝试制作另一个并使用句点来获得两个时间的差异DateTime

String stringOneHour = ("01:00 AM");
DateTime dateTime3 = dtf.parseDateTime(stringOneHour.toString());
Period timePeriod = new Period(dateTime3, dateTime1);

答案 1

只需使用:

dateTime.minusHours(1)

记录在 API 中

请注意,DateTime 对象是不可变的,因此仅该操作不起作用。您需要将此方法的结果分配给新对象(或替换其自身):

dateTime = dateTime.minusHours(1);

至于如何从两个s之间的差值中获得一个,你必须首先通过一个:PeriodDateTimeInterval

Period period = new Interval(begin, end).toPeriod();

链接到 SO 帖子,解释为什么两者兼有 和 。PeriodInterval

附注:Joda Time在其API中使用了很多间接信息;因此,读取Javadoc不仅需要读取一个类的方法,还需要查看来自所有继承的抽象类/接口的继承方法列表;例如,DateTime也是ReadableInstant。不过,你习惯了,这是一件轻而易举的事情。


答案 2

如果您使用的是旧版本的org.joda.time.DateTime,则可以使用减号(可读周期周期)方法,如下所示

        Date date = LocalDate.now().minus(new Period(1, 0, 0, 0)).toDate();

其中,Period 接受整型小时、整型分钟、整型秒、整型毫秒参数