1. 程式人生 > >根據時間生成隨機Id

根據時間生成隨機Id

public class DateUtil {
    private static SimpleDateFormat sdf = new SimpleDateFormat("yyy");
    public static String getId(){
    	Random random = new Random();
    	Date date = new Date();
    	String resu = sdf.format(date)+(random.nextInt(1000)+1000);
    	return resu;
    }
    
}

直接呼叫即可。