Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
import java.text.ParseException;
import java.text.SimpleDateFormat;

import java.util.Date;

public class Main {

    public static Date string2Date(String yyyyMMdd) {
        if (null != yyyyMMdd && yyyyMMdd.matches("^\\d{8}$")) {
            SimpleDateFormat format = new SimpleDateFormat("yyyyMMdd");
            try {
                return format.parse(yyyyMMdd);
            } catch (ParseException e) {
                return new Date();
            }
        }

        return new Date();
    }
}