将输入的秒转换成DDD:HH:MM:SS格式 机考题的两种写法

@Test
	public void hwDateFormat() throws ParseException{ 
		String sec="13419006";
        Format f0 = new SimpleDateFormat("ss"); 
        SimpleDateFormat f1 = new SimpleDateFormat("DDD:HH:mm:ss"); 
        Date d=(Date) f0.parseObject(sec);
        f1.format(d);
        System.out.println(f1.format(d)+"-----------------");
        
        //另一种计算方法,用上stringbuilder
        Integer secInt=Integer.valueOf(sec);
        Integer secInt1=Integer.parseInt(sec);
        int DDD=secInt/(60*60*24);
        int HH=(secInt%(60*60*24))/(60*60);
        int mm=((secInt%(60*60*24))%(60*60))/60;
        int ss=secInt%60;
        StringBuilder str = new StringBuilder();
        if(DDD > 0){str.append(DDD).append(":");}
        if(HH > 0){str.append(HH<10?"0":"").append(HH).append(":");}
        if(mm> 0){str.append(mm<10?"0":"").append(mm).append(":");}
        if(ss> 0){str.append(ss<10?"0":"").append(ss);}

        System.out.println(str.toString());

    }


你可能感兴趣的:(青铜斗士)