我有2个时间字符串,即"来自"和"到"时间。
示例:
String from= "05:30:22";
String to ="14:00:22";
如何使用日历格式确定从上到下的时间是上午或两者。
我的工作:
我得到了时间:
agenda_from_hour = Integer.valueOf(from.substring(0, 2));
agenda_to_hour = Integer.valueOf(to .substring(0, 2));
然后
if (agenda_from_hour>=12&&agenda_to_hour<=24){
//pm
} else if (agenda_from_hour>=0&&agenda_to_hour<=12){
//am
} else {
//am and pm
}
问题是当我从6:00:00到12:30:44有时间时,am是输出。
是否有更好的方法来比较2个字符串时间和确定它是上午,下午还是两者。
感谢。
答案 0 :(得分:2)
试试这个:
public static void main(String[] args) throws ParseException {
String from= "05:30:22";
String to ="14:00:22";
boolean fromIsAM = isAM(from);
boolean toIsAM = isAM(to);
}
/**
* Return true if the time is AM, false if it is PM
* @param HHMMSS in format "HH:mm:ss"
* @return
* @throws ParseException
*/
public static boolean isAM(String HHMMSS) throws ParseException {
SimpleDateFormat sdf = new SimpleDateFormat("HH:mm:ss");
Date date = sdf.parse(HHMMSS);
GregorianCalendar gc = new GregorianCalendar();
gc.setTime(date);
int AM_PM = gc.get(Calendar.AM_PM);
if (AM_PM==0) {
return true;
} else {
return false;
}
}
答案 1 :(得分:0)
使用Java Calendar API类本身..检查以下答案: java get date marker field(am/pm), Calculate Date/Time Difference in Java considering AM/PM