Java中String时间范围比较
Posted 表演给自己看的认真
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java中String时间范围比较相关的知识,希望对你有一定的参考价值。
public static void main(String[] args) throws ParseException {
String firstDate = "2019-01-01";
String lastDate = "2019-012-31";
String createdTime = "2019-07-20";
SimpleDateFormat sdf =new SimpleDateFormat("yyyy-MM-dd"); //创建日期转换对象:年 月 日
Long time = sdf.parse(createdTime).getTime();
Long time1 = sdf.parse(firstDate).getTime();
Long time2 = sdf.parse(lastDate).getTime();
if(time>=time1 && time<=time2){//转成long类型比较
System.out.println("在该时间段范围内");
}else{
System.out.println("不在该时间段范围内");
}
}
以上是关于Java中String时间范围比较的主要内容,如果未能解决你的问题,请参考以下文章