date to string java
Date date = Calendar.getInstance().getTime();
DateFormat dateFormat = new SimpleDateFormat("yyyy-mm-dd hh:mm:ss");
String strDate = dateFormat.format(date);
date to string java
Date date = Calendar.getInstance().getTime();
DateFormat dateFormat = new SimpleDateFormat("yyyy-mm-dd hh:mm:ss");
String strDate = dateFormat.format(date);
javascript date to string
// There are two flavours
const event = new Date(1993, 6, 28, 14, 39, 7);
// The Old Skool Flava
console.log(event.toString());
// expected output: Wed Jul 28 1993 14:39:07 GMT+0200 (CEST)
// (note: your timezone may vary)
// The Hipster way ;)
console.log(event.toDateString());
// expected output: Wed Jul 28 1993
Java convert date to string
// java convert date to string
import java.util.Date;
import java.text.SimpleDateFormat;
public class DateToStringDemo
{
public static void main(String[] args)
{
Date dt = new Date();
SimpleDateFormat sdf = new SimpleDateFormat("MM/dd/yyyy");
String strDate = sdf.format(dt);
System.out.println("Date format - MM/dd/yyyy to string is : " + strDate);
sdf = new SimpleDateFormat("dd-M-yyyy hh:mm:ss");
strDate = sdf.format(dt);
System.out.println("Date format - dd-M-yyyy hh:mm:ss to string is : " + strDate);
sdf = new SimpleDateFormat("dd MMMM yyyy");
strDate = sdf.format(dt);
System.out.println("Date format - dd MMMM yyyy to string is : " + strDate);
sdf = new SimpleDateFormat("dd MMMM yyyy zzzz");
strDate = sdf.format(dt);
System.out.println("Date format - dd MMMM yyyy zzzz to string is : " + strDate);
sdf = new SimpleDateFormat("E, dd MMM yyyy HH:mm:ss z");
strDate = sdf.format(dt);
System.out.println("Date format - E, dd MMM yyyy HH:mm:ss z to string is : " + strDate);
}
}
java date to string
Format formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String s = formatter.format(date);
from date to string
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss'Z'");
try {
Date date = new Date();
String dateTime = dateFormat.format(date);
System.out.println("Current Date Time : " + dateTime);
} catch (ParseException e) {
e.printStackTrace();
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us