JAVA时间转换问题

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JAVA时间转换问题相关的知识,希望对你有一定的参考价值。

将以下这个格式的时间转化为 2010-1-10 17:39,要源代码 JAVA,越简便越好。
Sun, 10 Jan 2010 09:39:21 GMT
不胜感激!
不能用“已过时”的方法

import java.text.ParseException;
import java.text.SimpleDateFormat;

public class test
public static void main(String[] args) throws ParseException
String str ="2010-1-10 17:39:21";
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
System.out.println( format.parse(str).toGMTString());



还不能用已过时的方法?? 那么补充如下:
import java.text.DateFormat;
import java.text.DateFormatSymbols;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Locale;
import java.util.TimeZone;

public class test
public static void main(String[] args) throws ParseException
String str = "2010-1-10 17:39:21";
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
// System.out.println( format.parse(str).toGMTString());
DateFormat fmt = new SimpleDateFormat("EEE,d MMM yyyy hh:mm:ss z",new DateFormatSymbols( Locale.US));
fmt.setTimeZone(TimeZone.getTimeZone("GMT"));
System.out.println(fmt.format(format.parse(str)));

参考技术A import java.text.FieldPosition;
import java.text.SimpleDateFormat;
import java.util.Date;

public class TestSimpleDateFormat
public static void main(String[] args)
SimpleDateFormat sdf=new SimpleDateFormat("yyyy-M-dd HH:mm");
Date date=new Date();
System.out.println(date);
StringBuffer sb=new StringBuffer();
sdf.format(date, sb, new FieldPosition(1));
System.out.print(sb.toString());


----------------------------------
运行结果如下:
Thu Jan 28 17:10:39 CST 2010
2010-1-28 17:10
参考技术B long l = Date.parse("Sun, 10 Jan 2010 09:39:21 GMT");
Date d = new Date(l);
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
System.out.println(format.format(d));
参考技术C System.out.println(DateFormat.getDateTimeInstance().format(new Date()));

一句搞定

java日期格式转换的问题

Mon Dec 23 13:54:54 CST 2013
我想把上面的格式,转换成yyyy-MM-dd HH:mm:ss这样的类型。
或者说,有什么办法可以比较Mon Dec 23 13:54:54 CST 2013这种时间的前后,我试过用after()方法,但是不行

楼主总共提出了两个问题,简单回答一下:

1.正如楼上各位给出的,用SimpleDateFormat即可对格式进行制定转换:

2.用after方法,或者提供的before()、compareTo()其实是可以进行时间的比较的,不过可能是楼主没有仔细看API中的关于Date类的详细介绍,简单介绍一下,Date类是以格林尼治时间为基准的。

这个是getYear()方法的介绍,它是要将现在的年份减去1900返回的

这个是getMonth()方法的介绍,返回的是0~11之间的,即一月为0,十二月为11:

这个是getDate()方法的介绍:

所以,如果进行时间比较,如代码中所写,需将年份减1900,月份-1来赋值,再进行比较即可。如图,after返回true,compareTo返回1.

参考技术A
    /**
     * 格式化日期为年月日 时分秒
     *
     * @param date
     * @return s
     */
    public static String getDateStringYMDHMS(Date date) 
        if (date == null || date.equals("")) return "";
        return dateFormat(date, "yyyy-MM-dd HH:mm:ss");
    

   

 /**
     * 日期相减
     *
     * @param date  日期
     * @param date1 日期
     * @return 返回相减后的日期
     */
    public static int diffDate(Date date, Date date1) 
        return (int) ((getMillis(date) - getMillis(date1)) / (24 * 3600 * 1000));
    

参考技术B SimpleDateFormate sdf = new SimpleDateFormate("yyyy-MM-dd HH:mm:ss");
Date date = new Date();
String fdate = sdf.format(date);
这样就行了
参考技术C Date d = new Date();
SimpleDateFormat sf =new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String date = sf.format(d);

以上是关于JAVA时间转换问题的主要内容,如果未能解决你的问题,请参考以下文章

java日期格式转换的问题

JAVA时间转换

新手求教Java时间转换问题(增加天数后的日期输出)

java中怎么转换时间的格式?

关于java时间戳转换的疑问,求大神指导

转换给定时区的日期/时间 - java