如何将JAVA DATE类型的日期 转换成指定格式类型的 (如:YYYY-MM-DD...

发布网友 发布时间:2022-04-24 08:41

我来回答

7个回答

热心网友 时间:2022-04-10 14:57

Date类型并没有格式,只有转换成String格式的时候让格式化显示。

new SimpleDateFormat("yyyy-MM-dd HH:mm:ss")format(new Date());

Calendar calendar = Calendar.getInstance();

int year = Integer.parseInt(datetime.substring(0,4));

int month = Integer.parseInt(datetime.substring(5,7));

int date = Integer.parseInt(datetime.substring(8,10));

int hour = Integer.parseInt(datetime.substring(11,13));

int minute = Integer.parseInt(datetime.substring(14,16));

//int second = Integer.parseInt(datetime.substring(17,19));

if(calendar.get(Calendar.YEAR)>year){

int y = calendar.get(Calendar.YEAR)-year;

扩展资料:

Date类可以在java.util包中找到,用一个long类型的值表示一个指定的时刻。它的一个有用的构造函数是Date(),创建一个表示创建时刻的对象。getTime()方法返回Date对象的long值。

import java.util.*;

public class Now {

public static void main(String[] args) {

Date now = new Date();

long nowLong = now.getTime();

System.out.println("Value is " + nowLong);

参考资料来源:百度百科-java日期函数

热心网友 时间:2022-04-10 16:15

Date类型并没有格式.只有转换成String格式的时候让他格式化显示
new SimpleDateFormat("yyyy-MM-dd HH:mm:ss")format(new Date());

热心网友 时间:2022-04-10 17:49

SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd")
String value=20150706;
df.parse(value)这样就额可以输出对应的日期格式文件

热心网友 时间:2022-04-10 19:41

取得时间类
1、Date ,System.out.println(new date());
2、calendar. 此类是抽象类,要想实例化,需要实例化子类GregorianCalendar.
在jdk中给了相应的方法:注意月份需要加1;

有时候希望对格式进行转换。
SimpleDateFormat类 此类在java.text包下
1、准备原格式,2、准备新格式 3、转化
String str = "2011-09-11 16:35:06";
SimpleDateFormat sd = new SimpleDateFormate("yyyy-MM-dd HH:mm:ss");
SimpleDateFormat sd2 = new SimpleDateFormate("yyyy
年MM月dd日 HH时mm分ss秒")

//然后进行转化
Date d = sd.parse(str);
将时间数插入sd2上
String newStr = sd2.format(d);
System.out.println(newStr);

热心网友 时间:2022-04-10 21:49

java.util.Date creatDate = new java.util.Date();
java.sql.Date date = new java.sql.Date(creatDate.getTime());
这种发放是将日期转换成YYYY-MM-dd类型

热心网友 时间:2022-04-11 00:13

使用强制转换

热心网友 时间:2022-04-11 02:55

看不懂你在说什么。

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com