Here you can find the source of sysdateStringddMMyyyyhhmmss()
public static String sysdateStringddMMyyyyhhmmss()
//package com.java2s; /*/*from ww w . ja va 2 s . co m*/ * Copyright (C) 2010 Viettel Telecom. All rights reserved. * VIETTEL PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static String sysdateStringddMMyyyyhhmmss() { SimpleDateFormat dbUpdateDateTime = new SimpleDateFormat("dd/MM/yyyy HH:mm:ss"); return dbUpdateDateTime.format(new Date()); } }