我从已弃用的Calendar
库更改为Date
,我需要比较不同的时间字符串对象。
如何使用(xx:xx:xx)
将时间字符串(Tue Feb 03 21:02:25 CET 2015)
转换为完整日期Calendar
?
我试过了:
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Calendar;
public class Test2 {
public static void main(String[] args) throws ParseException {
// Date date = new SimpleDateFormat("HH:mm:ss").parse("21:20:00"); // Date ist 1970!
// System.out.println(date.toString());
Calendar cal = Calendar.getInstance();
SimpleDateFormat sdf = new SimpleDateFormat("HH:mm:ss");
SimpleDateFormat sdf2 = new SimpleDateFormat("HH:mm:ss | dd.MM.yy");
cal.set(cal.YEAR, cal.MONTH, cal.DATE, 21, 20, 00);
System.out.println(sdf2.format(cal.getTime()));
}
}
和
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Calendar;
public class Test2 {
public static void main(String[] args) throws ParseException {
// Date date = new SimpleDateFormat("HH:mm:ss").parse("21:20:00"); // Date ist 1970!
// System.out.println(date.toString());
Calendar cal = Calendar.getInstance();
SimpleDateFormat sdf = new SimpleDateFormat("HH:mm:ss");
SimpleDateFormat sdf2 = new SimpleDateFormat("HH:mm:ss | dd.MM.yy");
cal.setTime(sdf.parse("21:20:00"));
cal.set(Calendar.YEAR, Calendar.MONTH, Calendar.DATE);
System.out.println(sdf2.format(cal.getTime()));
}
}
但他们分别返回:21:20:00 | 05.03.01
我希望能够将结果与其他"完整日期对象进行比较"比如Tue Feb 03 21:02:25 CET 2015
。
答案 0 :(得分:1)
<强>更新过的:强>
// Set the time in String
String stringDate = "04:10:13";
// Parse this time
SimpleDateFormat sdf = new SimpleDateFormat("HH:mm:ss");
Calendar cal = Calendar.getInstance();
// Set the parsed time to a Calendar object
cal.setTime(sdf.parse(stringDate));
现在您必须使用Calendar#set
方法获取今天的日期并将上述时间设置为它。
// get today's time
Calendar today = Calendar.getInstance();
// print today date with current time,
System.out.println("Date before time is set: " + today.getTime());
// set today's hour to above time
today.set(Calendar.HOUR, cal.get(Calendar.HOUR));
// set today's minute to above time
today.set(Calendar.MINUTE, cal.get(Calendar.MINUTE));
// set today's seconds to above time
today.set(Calendar.SECOND, cal.get(Calendar.SECOND));
// print your new time
System.out.println("Date after time is set: " + today.getTime());
<强> 输出: 强>
Date before time is set: Thu Feb 05 02:52:55 PKT 2015
Date after time is set: Thu Feb 05 04:10:13 PKT 2015
您还可以在一行中设置时间
today.set(today.get(Calendar.YEAR), today.get(Calendar.MONTH) , today.get(Calendar.DATE), cal.get(Calendar.HOUR), cal.get(Calendar.MINUTE), cal.get(Calendar.SECOND));
答案 1 :(得分:1)
使用JodaTime
从当前时间构建日期时间
DateTime dt = new DateTime()
.withMillisOfSecond(0)
.withHourOfDay(21)
.withMinuteOfHour(20)
.withSecondOfMinute(0);
从模式构建日期时间
DateTimeFormatter dateTimeFormatter = DateTimeFormat.forPattern(<YOUR_PATTERN>);
DateTime dt2 = dateTimeFormatter.parseDateTime(<YOUR_DATE_IN_A_STRING>);
比较日期时间
if(dt.isAfter(dt2)){
// DO ANYTHING
} else if(dt.isBefore(dt2){
// DO WHATEVER
}
从DateTime获取日期
Date date = dt.toDate()
答案 2 :(得分:-2)
LocalDateTime(http://www.journaldev.com/2800/java-8-date-time-api-example-tutorial-localdate-instant-localdatetime-parse-and-format)帮助了我:
import java.text.ParseException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.LocalTime;
public class Test {
public static void main(String[] args) throws ParseException {
String time = "14:12:01";
String[] timePieces= time.split(":");
int H = Integer.parseInt(timePieces[0]);
int m = Integer.parseInt(timePieces[1]);
int s = Integer.parseInt(timePieces[2]);
LocalDateTime today = LocalDateTime.of(LocalDate.now(), LocalTime.of(H, m, s));
System.out.println(today);
LocalDateTime today2 = LocalDateTime.now().withHour(H).withMinute(m).withSecond(s).withNano(0);
System.out.println(today2);
}
}
将其转换为“日期”对象:
Date date = Date.from(today.atZone(ZoneId.systemDefault()).toInstant());