时间问题修复
This commit is contained in:
parent
0e404b28b4
commit
e55fde5a05
|
@ -74,8 +74,8 @@ public interface Timing {
|
||||||
}
|
}
|
||||||
String[] items = StringUtils.split(stringTime, ":");
|
String[] items = StringUtils.split(stringTime, ":");
|
||||||
int hours = Integer.parseInt(items[0]);
|
int hours = Integer.parseInt(items[0]);
|
||||||
int minutes = items.length >= 2 ? 0 : Integer.parseInt(items[1]);
|
int minutes = items.length >= 2 ? Integer.parseInt(items[1]) : 0;
|
||||||
int seconds = items.length >= 3 ? 0 : Integer.parseInt(items[2]);
|
int seconds = items.length >= 3 ? Integer.parseInt(items[2]) : 0;
|
||||||
return StringUtils.leftPad(Integer.toHexString(hours), 4, "0") +
|
return StringUtils.leftPad(Integer.toHexString(hours), 4, "0") +
|
||||||
StringUtils.leftPad(Integer.toHexString(minutes), 4, "0") +
|
StringUtils.leftPad(Integer.toHexString(minutes), 4, "0") +
|
||||||
StringUtils.leftPad(Integer.toHexString(seconds), 4, "0");
|
StringUtils.leftPad(Integer.toHexString(seconds), 4, "0");
|
||||||
|
|
Loading…
Reference in New Issue