私はこのコードを使用しようとしています:
private static Date getTimeStamp() {
return new Timestamp(new Date().getTime());
}
私が得ているのは2013-03-13 12:46:22.011
しかし、私が必要としているのは、タイムスタンプがmm-dd-yyyy hh:mm
.
私はこのコードを使用しようとしています:
private static Date getTimeStamp() {
return new Timestamp(new Date().getTime());
}
私が得ているのは2013-03-13 12:46:22.011
しかし、私が必要としているのは、タイムスタンプがmm-dd-yyyy hh:mm
.
お役に立てれば
String date1="2013-03-13 12:46:22.011";
DateFormat userDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:SS");
DateFormat dateFormatNeeded = new SimpleDateFormat("MM/dd/yyyy HH:mm");
Date date = userDateFormat.parse(date1);
String finaldate = dateFormatNeeded.format(date);