Javaで以下の2つの日付を比較する方法。私のシナリオは
String dt1="2013/01/08";
Date f=Calendar.getInstance().getTime();
and how to add time(hh:mm:ss.ms) to the date string(i mean to dt1)eg. 2013/01/08 21:10:01.23
Javaで以下の2つの日付を比較する方法。私のシナリオは
String dt1="2013/01/08";
Date f=Calendar.getInstance().getTime();
and how to add time(hh:mm:ss.ms) to the date string(i mean to dt1)eg. 2013/01/08 21:10:01.23
String dt1="2013/01/08";
Date f=Calendar.getInstance().getTime();
SimpleDateFormat sdf = new SimpleDateFormat("yyyy/MM/dd");
System.out.println(sdf.parse(dt1).after(f));
compareToメソッドも使用できます
String dt1="2013/01/08";
Date f=Calendar.getInstance().getTime();
SimpleDateFormat sdf = new SimpleDateFormat("yyyy/MM/dd");
System.out.println(sdf.parse(dt1).compareTo(f);