]> gitweb.fperrin.net Git - DictionaryPC.git/commitdiff
go
authorthadh <thadh@THADH-MTV.ad.corp.google.com>
Sat, 9 May 2009 16:35:07 +0000 (09:35 -0700)
committerthadh <thadh@THADH-MTV.ad.corp.google.com>
Sat, 9 May 2009 16:35:07 +0000 (09:35 -0700)
src/com/hughes/android/dictionary/DateFormatTest.java [new file with mode: 0755]

diff --git a/src/com/hughes/android/dictionary/DateFormatTest.java b/src/com/hughes/android/dictionary/DateFormatTest.java
new file mode 100755 (executable)
index 0000000..c885ac1
--- /dev/null
@@ -0,0 +1,15 @@
+package com.hughes.android.dictionary;\r
+\r
+import java.text.SimpleDateFormat;\r
+import java.util.Date;\r
+\r
+public class DateFormatTest {\r
+\r
+  /**\r
+   * @param args\r
+   */\r
+  public static void main(String[] args) {\r
+    System.out.println(new SimpleDateFormat("yyyy.MM.dd HH:mm:ss").format(new Date()));\r
+  }\r
+\r
+}\r