📄 timeformatter.java
字号:
/*
* Created on 27 juin 2003
*
*/
package org.gudy.azureus2.core3.util;
/**
* @author Olivier
*
*/
public class TimeFormatter {
public static String format(long time)
{
if (time >= Constants.INFINITY_AS_INT) return Constants.INFINITY_STRING;
int secs = (int) time % 60;
int mins = (int) (time / 60) % 60;
int hours = (int) (time /3600) % 24;
int days = (int) (time / 86400);
String result = "";
if (days > 0) result = days + "d ";
if (hours > 0 || days > 0) result += hours + "h ";
if ((days == 0) && ((mins > 0 || hours > 0) && mins < 10)) result += "0" + mins + "m ";
if ((days == 0) && ((mins > 0 || hours > 0) && mins >= 10)) result += mins + "m ";
if ((hours == 0 && days == 0) && ((secs > 0 || mins > 0) && secs < 10)) result += "0" + secs + "s ";
if ((hours == 0 && days == 0) && ((secs > 0 || mins > 0) && secs >= 10)) result += secs + "s ";
return result.length() == 0 ? "" : result.substring(0, result.length() - 1);
}
public static String formatColon(long time)
{
if (time >= Constants.INFINITY_AS_INT) return Constants.INFINITY_STRING;
if (time < 0) return "";
int secs = (int) time % 60;
int mins = (int) (time / 60) % 60;
int hours = (int) (time /3600) % 24;
int days = (int) (time / 86400);
String result = "";
if (days > 0) result = days + "d ";
result += twoDigits(hours) + ":" + twoDigits(mins) + ":" + twoDigits(secs);
return result;
}
private static String twoDigits(int i) {
return (i < 10) ? "0" + i : String.valueOf(i);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -