samples/secondssince.js

Sat, 22 Dec 2018 12:48:43 -0800

author
diazhou
date
Sat, 22 Dec 2018 12:48:43 -0800
changeset 2457
694869cbd8b0
parent 1401
da52a33a5e93
permissions
-rw-r--r--

Added tag jdk8u201-b25 for changeset 5a876140bff8

sundar@1401 1 # usage: jjs secondssince.js
sundar@1401 2
sundar@1401 3 /*
sundar@1401 4 * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
sundar@1401 5 *
sundar@1401 6 * Redistribution and use in source and binary forms, with or without
sundar@1401 7 * modification, are permitted provided that the following conditions
sundar@1401 8 * are met:
sundar@1401 9 *
sundar@1401 10 * - Redistributions of source code must retain the above copyright
sundar@1401 11 * notice, this list of conditions and the following disclaimer.
sundar@1401 12 *
sundar@1401 13 * - Redistributions in binary form must reproduce the above copyright
sundar@1401 14 * notice, this list of conditions and the following disclaimer in the
sundar@1401 15 * documentation and/or other materials provided with the distribution.
sundar@1401 16 *
sundar@1401 17 * - Neither the name of Oracle nor the names of its
sundar@1401 18 * contributors may be used to endorse or promote products derived
sundar@1401 19 * from this software without specific prior written permission.
sundar@1401 20 *
sundar@1401 21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
sundar@1401 22 * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
sundar@1401 23 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
sundar@1401 24 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
sundar@1401 25 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
sundar@1401 26 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
sundar@1401 27 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
sundar@1401 28 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
sundar@1401 29 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
sundar@1401 30 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
sundar@1401 31 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
sundar@1401 32 */
sundar@1401 33
sundar@1401 34 // Number of seconds elapsed since the specified Instance #nashorn #javascript #java
sundar@1401 35 // Input date and time in ISO 8601 format
sundar@1401 36 // Example: 2001-01-01T00:00:00Z for 1 Jan 2001, 0 GMT
sundar@1401 37
sundar@1401 38 var Instant = java.time.Instant;
sundar@1401 39 var ChronoUnit = java.time.temporal.ChronoUnit;
sundar@1401 40 print("Enter date time:");
sundar@1401 41 var sec = Instant.parse(readLine()).
sundar@1401 42 until(Instant.now(), ChronoUnit.SECONDS);
sundar@1401 43 print(sec);

mercurial