From 880b917032148d8965e9a38861ed984452714ee1 Mon Sep 17 00:00:00 2001 From: thadh Date: Sat, 9 May 2009 09:35:07 -0700 Subject: [PATCH] go --- .../hughes/android/dictionary/DateFormatTest.java | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 src/com/hughes/android/dictionary/DateFormatTest.java diff --git a/src/com/hughes/android/dictionary/DateFormatTest.java b/src/com/hughes/android/dictionary/DateFormatTest.java new file mode 100755 index 0000000..c885ac1 --- /dev/null +++ b/src/com/hughes/android/dictionary/DateFormatTest.java @@ -0,0 +1,15 @@ +package com.hughes.android.dictionary; + +import java.text.SimpleDateFormat; +import java.util.Date; + +public class DateFormatTest { + + /** + * @param args + */ + public static void main(String[] args) { + System.out.println(new SimpleDateFormat("yyyy.MM.dd HH:mm:ss").format(new Date())); + } + +} -- 2.43.0