java日期格式化yyyy-mm-dd
时间: 2023-09-27 14:08:30 浏览: 34
在 Java 中,你可以使用 SimpleDateFormat 类来格式化日期。以 "yyyy-MM-dd" 为例,你可以这样写:
```
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
String formattedDate = dateFormat.format(new Date());
System.out.println("Formatted date: " + formattedDate);
```
上面的代码创建了一个 SimpleDateFormat 对象,并将 "yyyy-MM-dd" 作为模式(pattern)传入。接着,使用 format() 方法格式化当前日期,最后将格式化后的日期打印出来。
相关问题
Java日期格式转yyyy-MM-dd 为 日期时间格式yyyy-MM-dd HH:mm:ss
在Java中,如果你有一个日期对象并想将其转换为"yyyy-MM-dd HH:mm:ss"这样的日期时间格式,你可以使用`SimpleDateFormat`类来进行格式化。首先,你需要创建一个`SimpleDateFormat`对象,指定目标格式,然后使用`format()`方法将日期转换为字符串。
以下是一个示例:
```java
import java.text.SimpleDateFormat;
import java.util.Date;
public class Main {
public static void main(String[] args) {
// 创建一个Date对象(这里假设你已经有了一个date变量)
Date date = ...;
// 定义日期格式和时间格式的对象
SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd");
SimpleDateFormat dateTimeFormatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
// 使用formatter获取年月日部分
String yearMonthDay = formatter.format(date);
// 将yearMonthDay合并到完整的日期时间格式中
String formattedDateTime = dateTimeFormatter.format(new Date(yearMonthDay + " 00:00:00"));
System.out.println(formattedDateTime);
}
}
```
在这个例子中,我们先将原始日期格式化为"yyyy-MM-dd",然后创建一个新的时间部分"00:00:00",最后将两者结合在一起。
java 日期格式化为yyyy-mm-dd
你可以使用SimpleDateFormat类来格式化Java日期。以下是一个示例代码,可以将日期格式化为yyyy-mm-dd的形式:
```java
import java.text.SimpleDateFormat;
import java.util.Date;
public class DateFormatExample {
public static void main(String[] args) {
Date date = new Date();
SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd");
String formattedDate = formatter.format(date);
System.out.println(formattedDate);
}
}
```
输出结果应该是类似于2021-03-10的字符串。
阅读全文