/* * Decompiled with CFR 0.0. * * Could not load the following classes: * java.lang.Object * java.lang.String * java.lang.StringBuilder * java.text.DecimalFormat */ package com.juntek.celiangvat.util; import java.text.DecimalFormat; public class TimeFormat { public static String secToLong(int n) { int n2 = n / 3600; int n3 = n % 3600; int n4 = n3 / 60; int n5 = n3 % 60; DecimalFormat decimalFormat = new DecimalFormat("00"); String string2 = decimalFormat.format((long)n4); String string3 = decimalFormat.format((long)n2); String string4 = decimalFormat.format((long)n5); StringBuilder stringBuilder = new StringBuilder(); stringBuilder.append(string3); stringBuilder.append(":"); stringBuilder.append(string2); stringBuilder.append(":"); stringBuilder.append(string4); return stringBuilder.toString(); } }