广告
返回顶部
首页 > 资讯 > 后端开发 > Python >Java验证时间格式是否正确方法类项目实战
  • 818
分享到

Java验证时间格式是否正确方法类项目实战

2024-04-02 19:04:59 818人浏览 薄情痞子

Python 官方文档:入门教程 => 点击学习

摘要

在很多场景中我们需要验证时间日期的是否属于正确的格式,验证时间是否符合常规的。 1、验证 yyyy-MM-dd HH:mm:dd 格式的日期 String date = "2020-

在很多场景中我们需要验证时间日期的是否属于正确的格式,验证时间是否符合常规的。

1、验证 yyyy-MM-dd HH:mm:dd 格式的日期

String date = "2020-01-25 12:36:45";
System.out.println("date "+isLegalDate(date.length(),date,"yyyy-MM-dd HH:mm:ss"));

2、验证 yyyy-MM-dd 格式的日期

String yearMonthday = "2020-01-01";
System.out.println("yearMonthday: "+isLegalDate(yearMonthday.length(),yearMonthday,"yyyy-MM-dd"));

3、验证 yyyy-MM 格式的日期

String yearMonth = "2020-02";
System.out.println("yearMonth: "+isLegalDate(yearMonth.length(),yearMonth,"yyyy-MM"));

4、验证 yyyy 格式的日期

 String year = "2020";
 System.out.println("year: "+isLegalDate(year.length(),year,"yyyy"));

5、验证 HH:mm:ss 格式的日期

String hms = "12:36:89";
System.out.println("hms: "+isLegalDate(hms.length(),hms,"HH:mm:ss"));

6、下面是一个完整的方法类直接运行就可以实现验证日期格式是否正确的

package com.shucha.deveiface.biz.test;
 
import java.text.DateFORMat;
import java.text.SimpleDateFormat;
import java.util.Date;
 

public class IsLegalDate {
 
 
    public static void main(String[] args) {
        //1、验证 yyyy-MM-dd HH:mm:dd 格式的日期
        String date = "2020-01-25 12:36:45";
        System.out.println("date "+isLegalDate(date.length(),date,"yyyy-MM-dd HH:mm:ss"));
 
        //2、验证 yyyy-MM-dd 格式的日期
        String yearMonthday = "2020-01-01";
        System.out.println("yearMonthday: "+isLegalDate(yearMonthday.length(),yearMonthday,"yyyy-MM-dd"));
 
        //3、验证 yyyy-MM 格式的日期
        String yearMonth = "2020-02";
        System.out.println("yearMonth: "+isLegalDate(yearMonth.length(),yearMonth,"yyyy-MM"));
 
        //4、验证 yyyy 格式的日期
        String year = "2020";
        System.out.println("year: "+isLegalDate(year.length(),year,"yyyy"));
 
        //5、验证 HH:mm:ss 格式的日期
        String hms = "12:36:89";
        System.out.println("hms: "+isLegalDate(hms.length(),hms,"HH:mm:ss"));
 
 
 
 
    }
 
    
    public static boolean isLegalDate(int length, String sDate,String format) {
        int legalLen = length;
        if ((sDate == null) || (sDate.length() != legalLen)) {
            return false;
        }
        DateFormat formatter = new SimpleDateFormat(format);
        try {
            Date date = formatter.parse(sDate);
            return sDate.equals(formatter.format(date));
        } catch (Exception e) {
            return false;
        }
    }
}

 下面是一个时间验证之后的截图

 到此这篇关于Java验证时间格式是否正确方法类项目实战的文章就介绍到这了,更多相关Java验证时间格式内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!

--结束END--

本文标题: Java验证时间格式是否正确方法类项目实战

本文链接: https://www.lsjlt.com/news/145929.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

本篇文章演示代码以及资料文档资料下载

下载Word文档到电脑,方便收藏和打印~

下载Word文档
猜你喜欢
  • Java验证时间格式是否正确方法类项目实战
    在很多场景中我们需要验证时间日期的是否属于正确的格式,验证时间是否符合常规的。 1、验证 yyyy-MM-dd HH:mm:dd 格式的日期 String date = "2020-...
    99+
    2022-11-13
  • Java怎么验证时间格式是否正确
    这篇文章主要介绍了Java怎么验证时间格式是否正确的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇Java怎么验证时间格式是否正确文章都会有所收获,下面我们一起来看看吧。在很多场景中我们需要验证时间日期的是否属于...
    99+
    2023-06-30
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作