package lightbox;
import java.util.*;
import java.io.*;
import java.text.*;
public class Test {
// *****************************************************
// 日付文字列 ( インスタンス )
// *****************************************************
public String getDateString( ) {
Date myDate = null;
String strDate = null;
myDate = new Date();
strDate = DateFormat.getDateInstance().format(myDate);
return strDate;
}
// *****************************************************
// 日付文字列 ( クラス )
// *****************************************************
public static String getDateSystem( ) {
Date myDate = null;
String strDate = null;
myDate = new Date();
strDate = DateFormat.getDateInstance().format(myDate);
return strDate;
}
}