All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.dounine.clouddisk360.util.TimeUtil Maven / Gradle / Ivy

package com.dounine.clouddisk360.util;

public class TimeUtil {

	public static String getTimeLenth(int length){
		String time = String.valueOf(System.currentTimeMillis());
		if(length>time.length()){
			return time;
		}
		return time.substring(0,length);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy