android studio获取时间和日期
时间: 2023-11-20 17:55:14 浏览: 180
获取时间和日期
以下是在Android Studio中获取时间和日期的示例代码:
```java
// 获取当前日期
Calendar calendar = Calendar.getInstance();
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd", Locale.getDefault());
String currentDate = dateFormat.format(calendar.getTime());
// 获取当前时间
SimpleDateFormat timeFormat = new SimpleDateFormat("HH:mm:ss", Locale.getDefault());
String currentTime = timeFormat.format(calendar.getTime());
```
上述代码中,我们使用了Java中的Calendar类和SimpleDateFormat类来获取当前日期和时间。其中,Calendar.getInstance()方法返回一个表示当前时间的Calendar对象,SimpleDateFormat类用于将日期和时间格式化为指定的字符串格式。
在上述代码中,我们使用了两个不同的SimpleDateFormat对象来分别格式化日期和时间。在实际使用中,你可以根据自己的需求来选择不同的日期和时间格式。
阅读全文