Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import java.util.*;

public class Main {
    public static Date toDate(String s) {
        if (s == null) {
            return null;
        }
        try {
            return new Date(Long.parseLong(s));
        } catch (NumberFormatException e) {
            return null;
        }
    }
}