「Java」SimpleDateFormatクラスで日付のフォーマットを変更する
Javaコード
import java.text.SimpleDateFormat;
import java.util.Date;
public class ArrtoDee {
public static void main(String[] args) {
Date d = new Date();
SimpleDateFormat ss = new SimpleDateFormat(“yyyy-MM-dd hh:mm:ss");
System.out.println(ss.format(d));
Date date = new Date();
SimpleDateFormat sdformat = new SimpleDateFormat(“yyyy-MM-dd HH:mm:ss");
String LgTime = sdformat.format(date);
System.out.println(LgTime);
}
}