js get local date
var now = new Date();
console.log(now.toLocaleDateString()); // expected output: 2/26/2021 (MM/DD/YYYY)
js get local date
var now = new Date();
console.log(now.toLocaleDateString()); // expected output: 2/26/2021 (MM/DD/YYYY)
js datetime local
var date = new Date();
var dd = String(date.getDate()).padStart(2, '0');
var mm = String(date.getMonth() + 1).padStart(2, '0'); //January is 0!
var yyyy = date.getFullYear();
today = mm + '/' + dd + '/' + yyyy;
var time = date.toLocaleTimeString();
var dateTime = "Date: " + today + " and Time: " + time;
Local date
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.LocalTime;
import java.time.Month;
/**
* Java Program to demonstrate How to use LocalDateTime class in Java 8.
* LocalDateTime is LocalDate + LocalTime, i.e. date with time
* @author WINDOWS 8
*/
public class Java8Demo {
public static void main(String args[]) {
// LocalDate is date without time in Java 8
// LocalTime is time without date in Java 8
// LocalDateTime is both date and time e.g. LocalDate + LocalTime
// but without Timezone information
// LocalDateTime.now() creates a LocalDateTieme object with current
// date and time
LocalDateTime rightNow = LocalDateTime.now();
System.out.println("current datetime : " + rightNow);
// LocalDateTime.of() method is a factory method to careate
// LocalDateTiem with specific date and time
LocalDateTime aDateTime = LocalDateTime.of(2015,
Month.JULY, 29, 19, 30, 40);
System.out.println("some datetime : " + aDateTime);
// You can also create LocalDateTime object by combining LocalDate
// and LocalTime
LocalDate currentDate = LocalDate.now();
LocalTime currentTime = LocalTime.now();
LocalDateTime fromDateAndTime = LocalDateTime.of(currentDate,
currentTime);
System.out.println("LocalDateTime created by combining LocalDate"
+ " and LocalTime" + fromDateAndTime);
// You can also retrieve LocalDate and LocalTime from LocalDateTime
LocalDate retrievedDate = fromDateAndTime.toLocalDate();
LocalTime retrievedTime = fromDateAndTime.toLocalTime();
System.out.println("retreived LocalDate : " + retrievedDate);
System.out.println("retreived LocalTime : " + retrievedTime);
}
}
Output :
current datetime : 2015-08-02T00:29:53.949
some datetime : 2015-07-29T19:30:40
LocalDateTime created by combining LocalDate
and LocalTime2015-08-02T00:29:53.949
retreived LocalDate : 2015-08-02
retreived LocalTime : 00:29:53.949
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