Java转换日期格式只保留年月
时间: 2023-07-06 17:26:14 浏览: 84
你可以使用Java中的SimpleDateFormat类来转换日期格式。以下是一个例子,将日期格式转换为只包含年月:
```
import java.text.SimpleDateFormat;
import java.util.Date;
public class Main {
public static void main(String[] args) {
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM");
Date date = new Date();
String formattedDate = dateFormat.format(date);
System.out.println(formattedDate);
}
}
```
在上述示例中,我们首先创建一个SimpleDateFormat对象并指定日期格式为"yyyy-MM",其中"yyyy"表示年份,"MM"表示月份。然后我们使用Date类获取当前日期,并将其格式化为指定的日期格式。最后,我们将格式化后的日期打印到控制台。
相关问题
Java date 类型转换日期格式只保留年月
可以使用 SimpleDateFormat 类来实现 Java date 类型转换日期格式只保留年月的需求。具体实现代码如下:
```java
import java.text.SimpleDateFormat;
import java.util.Date;
public class DateConversionExample {
public static void main(String[] args) {
Date date = new Date();
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM");
String formattedDate = sdf.format(date);
System.out.println(formattedDate);
}
}
```
在上述代码中,我们首先获取当前日期时间,然后创建一个 SimpleDateFormat 类的实例 sdf,指定日期格式为 "yyyy-MM",即只保留年月。接着,我们调用 sdf 的 format 方法,将日期时间格式化成字符串形式,并将其赋值给 formattedDate 变量。最后,我们将 formattedDate 打印到控制台上。
执行上述代码,输出结果为当前年月的字符串形式,例如 "2021-07"。
java年月日只保留月日
我可以为您提供一个Java代码片段来实现只保留月日的功能:
```
import java.time.LocalDate;
import java.time.format.DateTimeFormatter;
public class Main {
public static void main(String[] args) {
LocalDate currentDate = LocalDate.now();
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("MM-dd");
String formattedDate = currentDate.format(formatter);
System.out.println(formattedDate);
}
}
```
这个代码片段会输出当前日期的月日,格式为"MM-dd"。如果您需要输入一个特定日期,可以使用`LocalDate.parse()`方法将日期字符串转换为`LocalDate`对象,然后使用相同的`DateTimeFormatter`对象来格式化日期。
阅读全文