Fecha método setTime() en Java con ejemplos

El método setTime() de la clase Date de Java establece un objeto de fecha. Establece el objeto de fecha para representar el tiempo en milisegundos después del 1 de enero de 1970 a las 00:00:00 GMT.
Sintaxis:

public void setTime(long time)

Parámetros: La función acepta un solo parámetro time que especifica el número de milisegundos.

Valor de retorno: Su método no tiene valor de retorno.

Excepción: la función no lanza ninguna excepción.

El siguiente programa demuestra la función mencionada anteriormente:

Programa 1:

// Java code to demonstrate
// setTime() function of Date class
  
import java.util.Date;
import java.util.Calendar;
public class GfG {
    // main method
    public static void main(String[] args)
    {
  
        // creating a date object with specified time.
        Date dateOne = new Date();
  
        System.out.println("Date initially: "
                           + dateOne);
  
        // Sets the time
        dateOne.setTime(1000);
  
        // Prints the time
        System.out.println("Date after setting"
                           + " the time: "
                           + dateOne);
    }
}
Producción:

Date initially: Wed Jan 02 09:34:03 UTC 2019
Date after setting the time: Thu Jan 01 00:00:01 UTC 1970

Programa 2:

// Java code to demonstrate
// setTime() function of Date class
  
import java.util.Date;
import java.util.Calendar;
public class GfG {
    // main method
    public static void main(String[] args)
    {
  
        // creating a Calendar object
        Calendar c1 = Calendar.getInstance();
  
        // set Month
        // MONTH starts with 0 i.e. ( 0 - Jan)
        c1.set(Calendar.MONTH, 11);
  
        // set Date
        c1.set(Calendar.DATE, 05);
  
        // set Year
        c1.set(Calendar.YEAR, 1996);
  
        // creating a date object with specified time.
        Date dateOne = c1.getTime();
  
        System.out.println("Date initially: "
                           + dateOne);
  
        // Sets the time
        dateOne.setTime(1000999);
  
        // Prints the time
        System.out.println("Date after setting"
                           + " the time: "
                           + dateOne);
    }
}
Producción:

Date initially: Thu Dec 05 09:32:53 UTC 1996
Date after setting the time: Thu Jan 01 00:16:40 UTC 1970

Publicación traducida automáticamente

Artículo escrito por Twinkl Bajaj y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *