在Android应用程序中显示当前时间和日期


Answers:


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

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 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'2

5
阅读这个明显的答案后,我感觉像个傻瓜!我实现了自己的runnable,将其休眠一定时间,以此类推,当显而易见的答案是XML-one-liner时!非常感谢(您的帖子发布已超过一年):-)
dbm

6
在2015年已弃用,建议您改用TextClock。:)
Evilripper 2015年

1
API级别23不推荐使用AnalogClock,而AnalogClock和DigitalClock仅显示当前时间,而不显示当前日期。
Zafer


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)

哦,是的,但是当其他变量都正确时,为什么他们必须这样做呢?:)
Kris

1
日历c = Calendar.getInstance(); int month = c.get(Calendar.MONTH)+ 1; 字符串sDate = month +“-” + c.get(Calendar.DAY_OF_MONTH)+“-” + c.get(Calendar.YEAR)+“-” + c.get(Calendar.HOUR_OF_DAY)+“:” + c。 get(Calendar.MINUTE); 效果很好
user577732'7

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

您必须要导入

导入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中使用日期/时间,建议您使用ThreeTenABP,它是java.time.*Java 8附带的软件包版本(从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
并且由于问题是有关显示日期和时间的,为此,例如可以用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";
}
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.