Android 애플리케이션에서 현재 시간 및 날짜 표시


답변:


301

이 작업을 수행하는 몇 가지 방법이 있으므로 어렵지 않습니다. 현재 날짜 및 시간을에 넣고 싶다고 가정합니다 TextView.

String currentDateTimeString = java.text.DateFormat.getDateTimeInstance().format(new Date());

// textView is the TextView view that should display it
textView.setText(currentDateTimeString);

쉽게 찾을 수있는 문서에 읽기 더 많은 것이 여기가 . 여기에는 변환에 사용되는 형식을 변경하는 방법에 대한 자세한 정보가 있습니다.


43
좀 더 명쾌하십시오! 오류가 무엇입니까? 잘못된 DateFormat 클래스를 가져 왔습니까? 그것은 java.text.DateFormat아니다 android.text.format.DateFormat! 그리고 그것은 java.util.Date아닙니다 java.sql.Date! 질문하는 것에 대한 작은 힌트 : 예를 들어, "표시"로 의미하는 바를 질문에 정확하게 표시하십시오. 그리고 내 줄에 입력 할 때 물론 Date와 DateFormat을 모두 가져와야합니다. 각각에 대해 2를 선택할 수 있다면 가장 조합이 적습니다. 단지 4입니다!
Zordid

죄송합니다, 날짜가 없습니다. 시간이 비슷합니다.
BIBEKRBARAL

28
developer.android.com/reference/java/text/SimpleDateFormat.html을 살펴보십시오 . 출력 문자열에 원하는 것을 정확하게 정의하는 방법을 볼 수 있습니다 . 예를 들어 시간 사용 "HH:mm:ss"! 완전히 :currentTimeString = new SimpleDateFormat("HH:mm:ss").format(new Date());
Zordid

2
이이기도 DateFormat.getTimeInstance()하고 DateFormat.getDateTimeInstance().
Felix

이것이 얼마나 효율적입니까? 끊임없이 발사하는 방법에서 시간을 가져야한다고 가정 해 봅시다. 매번 새 Date 객체를 만드는 것보다 효율적인 것이 있습니까?
keshav.bahadoor 2016 년

125
public class XYZ extends Activity {

    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        //setContentView(R.layout.main);

        Calendar c = Calendar.getInstance();
        System.out.println("Current time => "+c.getTime());

        SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
        String formattedDate = df.format(c.getTime());
        // formattedDate have current date/time
        Toast.makeText(this, formattedDate, Toast.LENGTH_SHORT).show();


      // Now we display formattedDate value in TextView
        TextView txtView = new TextView(this);
        txtView.setText("Current Date and Time : "+formattedDate);
        txtView.setGravity(Gravity.CENTER);
        txtView.setTextSize(20);
        setContentView(txtView);
    }

}

여기에 이미지 설명을 입력하십시오


1
android.os.Build.VERSION.SDK_INT> = android.os.Build.VERSION_CODES.N (24).
kangear

SimpleDateFormat기호 클래스를 찾을 수 없으므로 선언하는 방법
dubis

51
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    setContentView(R.layout.main);
    Thread myThread = null;

    Runnable runnable = new CountDownRunner();
    myThread= new Thread(runnable);   
    myThread.start();

}

public void doWork() {
    runOnUiThread(new Runnable() {
        public void run() {
            try{
                TextView txtCurrentTime= (TextView)findViewById(R.id.lbltime);
                    Date dt = new Date();
                    int hours = dt.getHours();
                    int minutes = dt.getMinutes();
                    int seconds = dt.getSeconds();
                    String curTime = hours + ":" + minutes + ":" + seconds;
                    txtCurrentTime.setText(curTime);
            }catch (Exception e) {}
        }
    });
}


class CountDownRunner implements Runnable{
    // @Override
    public void run() {
            while(!Thread.currentThread().isInterrupted()){
                try {
                doWork();
                    Thread.sleep(1000);
                } catch (InterruptedException e) {
                        Thread.currentThread().interrupt();
                }catch(Exception e){
                }
            }
    }
}

@Harshit이 함수는 클래스가 활동을 확장하는 한 Android SDK와 함께 제공됩니다.
Carlos P

2
나는 이것이 오래된 질문이라는 것을 알고 있지만 누군가 나와 같은 구글에서 그것을 발견하면 Date.getX 메소드가 더 이상 사용되지 않는다는 것을 알아야합니다.
tobi

38

시간을 표시하기위한 명백한 선택은 AnalogClockViewDigitalClockView 입니다.

예를 들어, 다음 레이아웃 :

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" 
    android:orientation="vertical">

    <AnalogClock
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content"/>

    <DigitalClock 
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content" 
        android:gravity="center" 
        android:textSize="20sp"/>
</LinearLayout>

다음과 같습니다 :

스크린 샷


4
친애하는 선생님, setText를 사용하여 현재 시간을 표시하고 싶습니다.
BIBEKRBARAL

5
이 명백한 답변을 읽은 후 바보 같은 느낌이 들었습니다! 나는 내 자신의 실행 파일을 구현하여 주어진 시간 동안 잠을 자도록했습니다. 그리고 명백한 대답이 XML 1 라이너였습니다! 많은 감사 (포스트 후 1 년 이상) :-)
dbm

6
2015 년에는 더 이상 사용되지 않으며 대신 TextClock을 사용하는 것이 좋습니다. :)
Evilripper

1
AnalogClock은 API 레벨 23에서 더 이상 사용되지 않으며 AnalogClock 및 DigitalClock은 현재 시간 만 표시하지만 현재 날짜는 표시하지 않습니다.
Zafer

34

한 줄의 코드를 원할 경우 :

String date = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(Calendar.getInstance().getTime());

결과는 "2016-09-25 16:50:34"


23

내 자신의 작업 솔루션 :

Calendar c = Calendar.getInstance();

String sDate = c.get(Calendar.YEAR) + "-" 
+ c.get(Calendar.MONTH)
+ "-" + c.get(Calendar.DAY_OF_MONTH) 
+ " at " + c.get(Calendar.HOUR_OF_DAY) 
+ ":" + c.get(Calendar.MINUTE);

도움이 되었기를 바랍니다!


c.get (Calendar.MONTH)이 6 일 때 5를 반환하는 이유가 궁금합니다. 장치에 올바른 시간 설정이 있습니다.
Kris

네,하지만 다른 변수가 정확할 때 왜 그렇게해야합니까? :)
Kris

1
캘린더 c = Calendar.getInstance (); int month = c.get (Calendar.MONTH) + 1; 문자열 sDate = 월 + "-"+ c.get (Calendar.DAY_OF_MONTH) + "-"+ c.get (Calendar.YEAR) + "-"+ c.get (Calendar.HOUR_OF_DAY) + ":"+ c. get (Calendar.MINUTE); 잘 작동
user577732

20

특정 패턴으로 날짜와 시간을 얻으려면 사용할 수 있습니다

Date d = new Date();
CharSequence s = DateFormat.format("yyyy-MM-dd hh:mm:ss", d.getTime());

15

에서 어떻게 올바른 형식으로 전체 날짜를 얻으려면? :

사용하십시오

android.text.format.DateFormat.getDateFormat(Context context)
android.text.format.DateFormat.getTimeFormat(Context context)

현재 사용자 설정과 관련하여 유효한 시간 및 날짜 형식을 얻습니다 (예 : 12/24 시간 형식).

import android.text.format.DateFormat;

private void some() {
    final Calendar t = Calendar.getInstance();
    textView.setText(DateFormat.getTimeFormat(this/*Context*/).format(t.getTime()));
}

10

나를 위해 일한 코드는 다음과 같습니다. 이것을 시도하십시오. 시스템 호출에서 시간과 날짜를 취하는 간단한 방법입니다. 필요할 때마다 Datetime () 메소드.

public static String Datetime()
{
    Calendar c = Calendar .getInstance();
    System.out.println("Current time => "+c.getTime());
    SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mms");
    formattedDate = df.format(c.getTime());
    return formattedDate;
}

9

사용하다:

Calendar c = Calendar.getInstance();

int seconds = c.get(Calendar.SECOND);
int minutes = c.get(Calendar.MINUTE);
int hour = c.get(Calendar.HOUR);
String time = hour + ":" + minutes + ":" + seconds;


int day = c.get(Calendar.DAY_OF_MONTH);
int month = c.get(Calendar.MONTH);
int year = c.get(Calendar.YEAR);
String date = day + "/" + month + "/" + year;

// Assuming that you need date and time in a separate
// textview named txt_date and txt_time.

txt_date.setText(date);
txt_time.setText(time);

7
String formattedDate = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(Calendar.getInstance().getTime()); 

날짜가 채워진 formattedDate대로 사용하십시오 String.
나의 경우에는:mDateButton.setText(formattedDate);


6
Calendar c = Calendar.getInstance();
int month=c.get(Calendar.MONTH)+1;
String sDate = c.get(Calendar.YEAR) + "-" + month+ "-" + c.get(Calendar.DAY_OF_MONTH) +
"T" + c.get(Calendar.HOUR_OF_DAY)+":"+c.get(Calendar.MINUTE)+":"+c.get(Calendar.SECOND);

이것은 2010-05-24T18 : 13 : 00과 같은 날짜 시간 형식을 제공합니다.



6

현재 날짜 기능을 표시하려면

Calendar c = Calendar.getInstance();

SimpleDateFormat df = new SimpleDateFormat("dd-MMM-yyyy");
String date = df.format(c.getTime());
Date.setText(date);

가져와야합니다

import java.text.SimpleDateFormat; 수입 java.util.Calendar;

사용해야합니다

TextView Date;
Date = (TextView) findViewById(R.id.Date);

5

현재 날짜와 시간이 표시됩니다.

public String getCurrDate()
{
    String dt;
    Date cal = Calendar.getInstance().getTime();
    dt = cal.toLocaleString();
    return dt;
}

5

이 코드를 복사하여 잘 작동하기를 바랍니다.

Calendar c = Calendar.getInstance();
SimpleDateFormat sdf = new SimpleDateFormat("dd:MMMM:yyyy HH:mm:ss a");
String strDate = sdf.format(c.getTime());

3
String currentDateandTime = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date());
Toast.makeText(getApplicationContext(), currentDateandTime, Toast.LENGTH_SHORT).show();

3

아래 코드를 사용해보십시오 :

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

Calendar cal = Calendar.getInstance();
System.out.println("time => " + dateFormat.format(cal.getTime()));

String time_str = dateFormat.format(cal.getTime());

String[] s = time_str.split(" ");

for (int i = 0; i < s.length; i++) {
     System.out.println("date  => " + s[i]);
}

int year_sys = Integer.parseInt(s[0].split("/")[0]);
int month_sys = Integer.parseInt(s[0].split("/")[1]);
int day_sys = Integer.parseInt(s[0].split("/")[2]);

int hour_sys = Integer.parseInt(s[1].split(":")[0]);
int min_sys = Integer.parseInt(s[1].split(":")[1]);

System.out.println("year_sys  => " + year_sys);
System.out.println("month_sys  => " + month_sys);
System.out.println("day_sys  => " + day_sys);

System.out.println("hour_sys  => " + hour_sys);
System.out.println("min_sys  => " + min_sys);

3

이 방법으로 시도 할 수 있습니다

Calendar calendar = Calendar.getInstance();
SimpleDateFormat mdformat = new SimpleDateFormat("HH:mm:ss");
String strDate = "Current Time : " + mdformat.format(calendar.getTime());

2

Android에서 날짜 / 시간으로 작업하려면 및 의 대체품으로 Java 8과 함께 제공되는 패키지 버전 (Android의 API 26부터 사용 가능) 인 ThreeTenABP 를 사용하는 것이 좋습니다 .java.time.*java.util.Datejava.util.Calendar

LocalDate localDate = LocalDate.now();
DateTimeFormatter formatter = DateTimeFormatter.ofLocalizedDate(FormatStyle.MEDIUM);
String date = localDate.format(formatter);
textView.setText(date);

1
바로 그것을 설정하기 위해, 당신이 올바른 것을 의미한다고 확신합니다. java.time은 Android API 레벨 26에서 빌드되었습니다 . ThreeTenABP는 API 레벨이 낮을 때 거의 동일한 기능을 얻는 데 사용하는 입니다. 따라서 코드는 낮은 수준과 높은 수준 모두에서 작동 할 수 있습니다.
Ole VV

2
그리고 질문은 날짜 표시에 대해 이후 와 시간을 그 목적의 하나가 예 A에 사용할 수에 대한, ZonedDateTime대신 LocalDateDateTimeFormatter.ofLocalizedDateTime대신 ofLocalizedDate. 그렇지 않으면 코드는 동일합니다.
Ole VV

1

Textview에 현재 날짜 및 시간 표시

    /// For Show Date
    String currentDateString = DateFormat.getDateInstance().format(new Date());
    // textView is the TextView view that should display it
    textViewdate.setText(currentDateString);
    /// For Show Time
    String currentTimeString = DateFormat.getTimeInstance().format(new Date());
    // textView is the TextView view that should display it
    textViewtime.setText(currentTimeString);

전체 코드 Android 확인 – 소스 코드를 사용하여 Android Studio 예제에서 현재 날짜 및 시간 표시


0

현재 시간 / 날짜 를 얻으려면 다음 코드 스 니펫을 사용하십시오.

시간 을 사용하려면 :

SimpleDateFormat simpleDateFormatTime = new SimpleDateFormat("HH:mm", Locale.getDefault());
String strTime = simpleDateFormatTime.format(now.getTime());

날짜 를 사용하려면 :

SimpleDateFormat simpleDateFormatDate = new SimpleDateFormat("E, MMM dd, yyyy", Locale.getDefault());    
String strDate = simpleDateFormatDate.format(now.getTime());

그리고 당신은 갈 수 있습니다.


0
SimpleDateFormat format = new SimpleDateFormat("dd/MM/yyyy");
Calendar c = Calendar.getInstance();
Date date = Calendar.getInstance().getTime();
String sDate = format.format(date);//31-12-9999
int mYear = c.get(Calendar.YEAR);//9999
int mMonth = c.get(Calendar.MONTH);
mMonth = mMonth + 1;//12
int hrs = c.get(Calendar.HOUR_OF_DAY);//24
int min = c.get(Calendar.MINUTE);//59
String AMPM;
if (c.get(Calendar.AM_PM) == 0) {
    AMPM = "AM";
} else {
    AMPM = "PM";
}
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.