摘要:
/** * 转为HH:MM:SS * @param second * @returns {string} * @private */ var _showTime = function (second) { if (second < 60) { if (second < 10) { return "0 阅读全文
摘要:
/** * 转换流量格式为xxGBxxMBxxKB * @param flow 156165(xxxxxx) */ public String changeFlowFormat(String flow) { Integer flows = Integer.valueOf(flow); if (flo 阅读全文
摘要:
/** * 转换时间格式为xx小时xx分xx秒 * @param second xxxxx */ public String changeTimeFormat(String second) { Integer seconds = Integer.valueOf(second); if (second 阅读全文