WebViper: Datumswert

Hi,

wie kann ich einen Datumswert "Locale" in den Wert yyyy-mm-dd bringen?

mfg
-WebViper-

  1. Hi -WebViper,

    nachfolgend ein Beispiel, wie ein Datum von Locale (Deutschland) in
    das von dir gesuchte Format umgewandelt wird.

    import java.text.*;
    import java.util.*;

    class x
    {
      static void main(String argv[])
      {
        //Ausgangsformat
        SimpleDateFormat datumsformat=(SimpleDateFormat)DateFormat.getDateInstance(DateFormat.SHORT,Locale.GERMANY);
        //Zielformat
        SimpleDateFormat ausformat=new SimpleDateFormat("yyyy-MM-dd");

    try
        {
            //Umwandlung Datum von Locale in Date
     Date datum=datumsformat.parse("20.02.2003");
            //Ermitteln Ergebnisstring
            String ausgabe=ausformat.format(datum);
     //Ausgabe
            System.out.print(ausgabe);
         }
         catch(Exception e){}
      }
    }

    Gruß Ralf

    1. Hi,

      funzt einwandfrei...

      Dank dir!!!
      -WebViper-

      (Als JAVA-Anfänger für jede Hilfe dankbar...)