java中字符串与日期的转换实例

所属分类: 软件编程 / java 阅读数: 38
收藏 0 赞 0 分享

复制代码 代码如下:

import java.sql.Timestamp;
import java.text.DateFormat;

import java.text.ParseException;

import java.text.SimpleDateFormat;

import java.util.Date;

public class DateIO {

public static void main(String[] args) {

Date date= new  DateIO().strToDate("2013-04-01");

String strdate=new DateIO().dateToStr(date);

String srrdate=new DateIO().timestampToStr(System.currentTimeMillis());

Timestamp ts=new DateIO().strToTimestamp(new Date());

}

//String 转换为 Date

public Date strToDate(String strdate){

DateFormat format = new SimpleDateFormat("yyyy-MM-dd"); 

Date date = null;   

try {

date = format.parse(strdate);

} catch (ParseException e) {

e.printStackTrace();

}

System.out.println("date:"+date);

return date;

}

//Date 转换为 String

public String dateToStr(Date date){


//年月日****-**-**

DateFormat format = new SimpleDateFormat("yyyy-MM-dd"); 

String str = format.format(date);   

System.out.println("str:"+str);


//年月日**-*-*

format = DateFormat.getDateInstance(DateFormat.SHORT);     

str = format.format(date);  

System.out.println(str); 


//年月日****-*-*

format = DateFormat.getDateInstance(DateFormat.MEDIUM);     

str = format.format(date); 

System.out.println(str); 


//****年*月*日星期*

format = DateFormat.getDateInstance(DateFormat.FULL);     

str = format.format(date);

System.out.println(str); 

return str;

}


//Timestamp转换为String

public String timestampToStr(Long timestamp){

SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");//定义格式,不显示毫秒 

String str = df.format(timestamp); 

System.out.println(str); 

return str;

}

//Date转换为Timestamp

public Timestamp strToTimestamp(Date date){

SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); 

String time = df.format(date); 

Timestamp ts = Timestamp.valueOf(time); 

System.out.println(ts); 

return ts;

}

}

更多精彩内容其他人还在看

详解Spring依赖注入:@Autowired,@Resource和@Inject区别与实现原理

这篇文章主要介绍了详解Spring依赖注入:@Autowired,@Resource和@Inject区别与实现原理,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
收藏 0 赞 0 分享

了解spring中的CloudNetflix Hystrix弹性客户端

这篇文章主要介绍了了解spring中的CloudNetflix Hystrix弹性客户端,客户端弹性模式是在远程服务发生错误或表现不佳时保护远程资源(另一个微服务调用或者数据库查询)免于崩溃。,需要的朋友可以参考下
收藏 0 赞 0 分享

Spark学习笔记Spark Streaming的使用

这篇文章主要介绍了Spark学习笔记Spark Streaming的使用,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
收藏 0 赞 0 分享

通过实例讲解springboot整合WebSocket

这篇文章主要介绍了通过实例讲解springboot整合WebSocket,WebSocket为游览器和服务器提供了双工异步通信的功能,即游览器可以向服务器发送消息,服务器也可以向游览器发送消息。,需要的朋友可以参考下
收藏 0 赞 0 分享

java虚拟机学习笔记进阶篇

在本篇内容里小编给大家分享了关于java虚拟机学习笔记的进阶内容,需要的朋友们跟着学习下。
收藏 0 赞 0 分享

java虚拟机学习高级篇

在本篇文章里小编给大家整理了关于java虚拟机学习高级篇的相关内容,有兴趣的朋友们跟着学习参考下。
收藏 0 赞 0 分享

java虚拟机中多线程总结

在本篇内容中小编给大家分享的是关于java虚拟机中多线程的知识点总结内容,需要的朋友们参考学习下。
收藏 0 赞 0 分享

java虚拟机多线程进阶篇总结

在本篇内容里小编给大家整理了关于java虚拟机多线程进阶篇的相关知识点内容,有兴趣的朋友们跟着参考下。
收藏 0 赞 0 分享

java数据结构和算法中数组的简单入门

在本文里小编给大家整理了关于java数据结构和算法中数组的简单入门知识点整理,需要的朋友们学习下。
收藏 0 赞 0 分享

java数据结构和算法中哈希表知识点详解

在本篇文章里小编给大家分享了关于java数据结构和算法中哈希表的相关知识点内容,需要的朋友们学习下。
收藏 0 赞 0 分享
查看更多