All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.automation.remarks.video.DateUtils Maven / Gradle / Ivy

package com.automation.remarks.video;

import java.text.SimpleDateFormat;
import java.util.Date;

/**
 * Created by sepi on 15.07.16.
 */
public class DateUtils {

    public static String formatDate(Date date, String format){
        SimpleDateFormat dateFormat = new SimpleDateFormat(
                format);
        return dateFormat.format(date);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy