Datumswert
WebViper
- java
0 Ralf Walther0 WebViper
Hi,
wie kann ich einen Datumswert "Locale" in den Wert yyyy-mm-dd bringen?
mfg
-WebViper-
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
Hi,
funzt einwandfrei...
Dank dir!!!
-WebViper-
(Als JAVA-Anfänger für jede Hilfe dankbar...)