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 getDateFromDateStringWithoutss(String dateStr, String template) {
        SimpleDateFormat formatter;
        Date date = null;
        formatter = new SimpleDateFormat(template, java.util.Locale.CHINA);
        try {
            date = (Date) formatter.parse(dateStr);
        } catch (ParseException e) {
            e.printStackTrace();
        }
        return date;
    }
}