Java tutorial
//package com.java2s; import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static String getCurrentTime() { SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMdd"); String currentDateAndTime = sdf.format(new Date()); return currentDateAndTime; } }