本文介绍了比较Java中的两个时间戳的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我如何比较 mytime 是否在 fromtime totime 之间:

How can I compare if mytime is between fromtime and totime:

Timestamp fromtime;
Timestamp totime;

Timestamp mytime;

推荐答案

if(mytime.after(fromtime) && mytime.before(totime))
  //mytime is in between

这篇关于比较Java中的两个时间戳的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-11 22:13