S Saskia21 Mitglied 29. Februar 2008 #1 Hallo Ich will einen Timestamp erzeugen, der so aufgebaut ist: jahr:monat:tag:stunde:min:sek:millisek Ich weiß nur nicht, wie ich das hinbekomme. Kann mir jemand ein leicht verständliches Beispiel sagen? Lg und vielen Dank Saskia
Hallo Ich will einen Timestamp erzeugen, der so aufgebaut ist: jahr:monat:tag:stunde:min:sek:millisek Ich weiß nur nicht, wie ich das hinbekomme. Kann mir jemand ein leicht verständliches Beispiel sagen? Lg und vielen Dank Saskia
M MeinerEiner_80 29. Februar 2008 #2 Moin! Schau dir das SimpleDateFormat mal an: http://java.sun.com/javase/6/docs/api/java/text/SimpleDateFormat.html Das ist genau das ,was du brauchst.. *grüssle* MeinerEiner
Moin! Schau dir das SimpleDateFormat mal an: http://java.sun.com/javase/6/docs/api/java/text/SimpleDateFormat.html Das ist genau das ,was du brauchst.. *grüssle* MeinerEiner
S Saskia21 Mitglied 29. Februar 2008 #3 Vielen Dank für deinen Tipp!! Hab es jetzt so gemacht: SimpleDateFormat s = new SimpleDateFormat("yyyyMMddHHmmssSS"); Date d = new Date(); System.out.println(s.format(d)); LG Saskia
Vielen Dank für deinen Tipp!! Hab es jetzt so gemacht: SimpleDateFormat s = new SimpleDateFormat("yyyyMMddHHmmssSS"); Date d = new Date(); System.out.println(s.format(d)); LG Saskia
zeja Erfahrenes Mitglied 29. Februar 2008 #4 Du kannst auch die Doppelpunkte mit reinnehmen: Java: SimpleDateFormat s = new SimpleDateFormat("yyyy:MM:dd:HH:mm:ss:SS");
Du kannst auch die Doppelpunkte mit reinnehmen: Java: SimpleDateFormat s = new SimpleDateFormat("yyyy:MM:dd:HH:mm:ss:SS");