public static void stopWatch(String state){
long time = System.currentTimeMillis();
SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
String strDate = df.format(time);
System.out.println(state + " 시간 : " + strDate);
}