본문 바로가기

   
Programming/Programming Exam

C#, JAVA, ASP, PHP 현재 날짜 시간 출력 방법

반응형

C#, JAVA, ASP, PHP 현재 날짜 시간 출력 방법

C#


using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Threading.Tasks;

 

namespace Exam01

{

    class Program

    {

        static void Main(string[] args)

        {           

            Console.WriteLine(System.DateTime.Now.ToString("yyyy MM dd HH mm ss"));

        }

    }

}





 

JAVA



import java.text.SimpleDateFormat;

import java.util.Calendar;

 

 

public class Exam01 {

       public static void main(String[] args){

       //날짜를 가져오기 위해 Calendar 함수 선언

       Calendar calendar = Calendar.getInstance();

            

      //SimpleDateFormat 객체를 이용하여 가져온 데이터를 원하는 값으로 설정해준다.

      SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy MM dd HH mm ss");

            

       //출력

       System.out.println("JAVA 현재시간 : " + dateFormat.format(calendar.getTime()));

       }

}

 





ASP



<%

Response.Write "ASP 현재시간 : "

Response.Write Year(Now) & " " & Month(Now) & " " & Day(Now) & " " & Hour(Now) & " " & Minute(Now) & " "  & Second(Now) & " "

%>





PHP



<?

echo(date("Y년 m월 d일 H시 i분 s초",time()));

?>




반응형