Androidアプリケーションで現在の日時を表示する


回答:


302

これを行うにはいくつかの方法があるので、わかりました。現在の日付と時刻をに入れたいと思います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 2010

すみません、私は時間ではなく日付を取得しました。同様に時間を取得できますか?
BIBEKRBARAL、2010

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 2017

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この関数は、クラスがActivityを拡張している限り、Android SDKに付属しています
Carlos P

2
私はこれが古い質問であることを知っていますが、誰かが私のようなGoogleでそれを見つけた場合、彼はメソッドDate.getXが非推奨であることを知っているはずです。
tobi 2012

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 2010

5
この明白な答えを読んだ後、私は愚かなたわごとのように感じます!私は独自のランナブルを実装し、それを一定時間スリープ状態にするなどして、明らかな答えがXMLの1ライナーだったときなどに使用しました。感謝します(投稿後1年以上):-)
dbm

6
2015年には非推奨になり、代わりにTextClockを使用することをお勧めします。:)
Evilripper 2015

1
AnalogClockはAPIレベル23で廃止されました。AnalogClockとDigitalClockは現在の時刻のみを表示し、現在の日付は表示しません。
Zafer 2018年

34

1行のコードが必要な場合:

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);

お役に立てれば!


6であるはずのc.get(Calendar.MONTH)が5を返すのはなぜですか?デバイスの時刻設定が正しい。
Kris

そうそう、でも、他の変数が正確だったのに、なぜそうしなければならないのでしょうか。:)
クリス

1
カレンダーc = Calendar.getInstance(); int月= 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 2011

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; import 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に同梱されているパッケージのバージョンであるThreeTenABPを使用することをお勧めしますjava.time.*(AndroidのAPI 26から利用可能)。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
そして、質問は日付と時刻を表示することに関するものだったので、その目的のために、たとえばのZonedDateTime代わりにLocalDateとのDateTimeFormatter.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.