Here you can find the source of parseYmdDate(String dateString)
public static Date parseYmdDate(String dateString)
//package com.java2s; /*/*from ww w. j a v a2 s . c om*/ * ###### * ###### * ############ ####( ###### #####. ###### ############ ############ * ############# #####( ###### #####. ###### ############# ############# * ###### #####( ###### #####. ###### ##### ###### ##### ###### * ###### ###### #####( ###### #####. ###### ##### ##### ##### ###### * ###### ###### #####( ###### #####. ###### ##### ##### ###### * ############# ############# ############# ############# ##### ###### * ############ ############ ############# ############ ##### ###### * ###### * ############# * ############ * * Adyen Java API Library * * Copyright (c) 2017 Adyen B.V. * This file is open source and available under the MIT license. * See the LICENSE file for more info. */ import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static Date parseYmdDate(String dateString) { if (dateString == null) { return null; } Date date; SimpleDateFormat fmt = new SimpleDateFormat("yyyy-MM-dd"); try { date = fmt.parse(dateString); } catch (ParseException e) { return null; } return date; } }