Método SimpleDateFormat set2DigitYearStart() en Java con ejemplos

El método set2DigitYearStart() de la clase SimpleDateFormat se usa para establecer el período de 100 años de 2 dígitos e interpretarlo como si estuviera en una fecha específica del usuario. El método analiza la fecha y establece la fecha en el rango de fecha_inicial a (fecha_inicial + 100) años.
Sintaxis: 
 

public void set2DigitYearStart(Date starting_Date)

Parámetros: el método toma un parámetro fecha_inicial de tipo Fecha que se refiere a la fecha de inicio en el método y puede variar hasta (fecha_inicial + 100) años.
Valor devuelto: el método devuelve un tipo vacío.
Los siguientes programas ilustran el funcionamiento del método set2DigitYearStart() de SimpleDateFormat: 
Ejemplo 1: 
 

Java

// Java code to illustrate set2DigitYearStart() method
 
import java.text.*;
import java.util.Calendar;
 
public class SimpleDateFormat_Demo {
    public static void main(String[] args)
        throws InterruptedException
    {
 
        SimpleDateFormat dt
            = new SimpleDateFormat("MM/ dd/ yy");
 
        try {
            Calendar cal = Calendar.getInstance();
            cal.setTime(dt.parse("10/ 27/ 16"));
            System.out.println("The Starting Time: "
                               + cal.getTime());
 
            // Setting 1916 instead of 2016
            // Using set2DigitYearStart() method
            dt.set2DigitYearStart(
                dt.parse("01/ 01/ 1900"));
            cal.setTime(dt.parse("06/ 12/ 16"));
            System.out.println("The New Time: "
                               + cal.getTime());
        }
 
        catch (ParseException except) {
            except.printStackTrace();
        }
    }
}
Producción: 

The Starting Time: Thu Oct 27 00:00:00 UTC 2016
The New Time: Mon Jun 12 00:00:00 UTC 1916

 

Ejemplo 2: 
 

Java

// Java code to illustrate set2DigitYearStart() method
 
import java.text.*;
import java.util.Calendar;
 
public class SimpleDateFormat_Demo {
    public static void main(String[] args)
        throws InterruptedException
    {
 
        SimpleDateFormat dt
            = new SimpleDateFormat("MM/ dd/ yy");
 
        try {
            Calendar cal = Calendar.getInstance();
            cal.setTime(dt.parse("01/ 28/ 19"));
            System.out.println("The Starting Time: "
                               + cal.getTime());
 
            // Setting 1916 instead of 2016
            // Using set2DigitYearStart() method
            dt.set2DigitYearStart(
                dt.parse("01/ 01/ 1900"));
            cal.setTime(dt.parse("05/ 12/ 17"));
            System.out.println("The New Time: "
                               + cal.getTime());
        }
 
        catch (ParseException except) {
            except.printStackTrace();
        }
    }
}
Producción: 

The Starting Time: Mon Jan 28 00:00:00 UTC 2019
The New Time: Sat May 12 00:00:00 UTC 1917

 

Publicación traducida automáticamente

Artículo escrito por Chinmoy Lenka 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 *