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