แสดงเวลาและวันที่ปัจจุบันในแอปพลิเคชัน 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! เพียงเล็กน้อยในการถามคำถาม: พยายามให้แม่นยำเช่น: ประกาศสิ่งที่คุณหมายถึงโดย "แสดง" ในคำถามของคุณ และเมื่อคุณพิมพ์ในบรรทัดของฉัน - ต้องนำเข้าทั้งวันที่และรูปแบบวันที่ - ถ้ามีตัวเลือก 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()
เฟลิกซ์

มันมีประสิทธิภาพแค่ไหน? สมมติว่าคุณต้องการเวลาจากวิธีการยิงที่ต่อเนื่อง มีอะไรที่มีประสิทธิภาพมากกว่าการสร้างวัตถุ Date ใหม่ทุกครั้งหรือไม่
keshav.bahadoor

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
ฉันรู้ว่านี่เป็นคำถามเก่า แต่ถ้าใครบางคนจะพบมันใน google เช่นฉันเขาควรรู้ว่าวิธีการ Date.getX เลิกใช้แล้ว
tobi

38

ตัวเลือกที่ชัดเจนสำหรับการแสดงเวลาคือAnalogClockมุมมองและDigitalClockมุมมองดู

ตัวอย่างเช่นรูปแบบต่อไปนี้:

<?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
ฉันรู้สึกเหมือนคนโง่หลังจากอ่านคำตอบที่ชัดเจนนี้! ฉันใช้งาน runnable ของตัวเองได้ทำให้มันหลับไปตามระยะเวลาที่กำหนดและเมื่อคำตอบที่ชัดเจนคือ XML-one-liner! ขอบคุณมาก (มากกว่าหนึ่งปีหลังจากโพสต์ของคุณ) :-)
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) ส่งคืนค่า 5 เมื่อมันควรจะเป็น 6? อุปกรณ์ของฉันมีการตั้งค่าเวลาที่ถูกต้อง
Kris

ใช่แล้ว แต่ทำไมพวกเขาต้องทำอย่างนั้นเมื่อตัวแปรอื่น ๆ มีความแม่นยำ :)
กริช

1
ปฏิทิน c = Calendar.getInstance (); int month = c.get (Calendar.MONTH) + 1; String sDate = เดือน + "-" + c.get (Calendar.DAY_OF_MONTH) + "-" + c.get (Calendar.YEAR) + "-" + c.get (Calendar.HOUR_OF_DAY) + ":" + c ได้รับ (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

นี่คือรหัสที่ใช้งานได้สำหรับฉัน โปรดลองสิ่งนี้ มันเป็นวิธีการง่ายๆที่ต้องใช้เวลาและวันที่จากการโทรของระบบ วิธีการวันที่และเวลา () ทุกที่ที่คุณต้องการ

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

คุณต้องนำเข้า

นำเข้า 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

หากคุณต้องการที่จะทำงานร่วมกับวันที่ / เวลาในหุ่นยนต์ผมขอแนะนำให้คุณใช้ThreeTenABPซึ่งเป็นรุ่นของjava.time.*แพคเกจ (เริ่มใช้ได้ตั้งแต่วันที่ 26 API บน Android) มาพร้อมกับ Java 8 ใช้ได้แทนหาและ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 พร้อมรหัสแหล่ง


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.