How to convert string quot;2011-11-29 12:34:25quot; to date in quot;dd-MM-yyyyquot; format in JAVA(如何转换字符串“2011-11-29 12:34:25迄今为止在“dd-MM-yyyy中JAVA格式)
问题描述
我正在尝试将格式为yyyy-MM-dd HH:mm:ss"的日期转换为dd-MM-yyyy".
I am trying to convert date which is in string and got format of "yyyy-MM-dd HH:mm:ss" to "dd-MM-yyyy".
我已经实现了以下代码,但它给出了:java.lang.IllegalArgumentException
I have implmented following code but its giving : java.lang.IllegalArgumentException
SimpleDateFormat dateFormat = new SimpleDateFormat("dd/MM/yyyy");
Date date = new Date(values);
String mydate = dateFormat.format(date);
推荐答案
首先,您必须将日期时间的字符串表示形式解析为 Date 对象.
First you have to parse the string representation of your date-time into a Date object.
DateFormat formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
Date date = (Date)formatter.parse("2011-11-29 12:34:25");
然后您将 Date 对象格式化回您喜欢的格式的字符串.
Then you format the Date object back into a String in your preferred format.
DateFormat dateFormat = new SimpleDateFormat("dd-MM-yyyy");
String mydate = dateFormat.format(date);
这篇关于如何转换字符串“2011-11-29 12:34:25"迄今为止在“dd-MM-yyyy"中JAVA格式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何转换字符串“2011-11-29 12:34:25"迄今为止在“dd-MM-yyyy"中JAVA格式
基础教程推荐
- REST Web 服务返回 415 - 不支持的媒体类型 2022-01-01
- 如何对 Java Hashmap 中的值求和 2022-01-01
- RabbitMQ:消息保持“未确认"; 2022-01-01
- 无法复制:“比较方法违反了它的一般约定!" 2022-01-01
- 存储 20 位数字的数据类型 2022-01-01
- 修改 void 函数的输入参数,然后读取 2022-01-01
- Spring AOP错误无法懒惰地为此建议构建thisJoinPoin 2022-09-13
- Struts2 URL 无法访问 2022-01-01
- 问题http://apache.org/xml/features/xinclude测试日志4j 2 2022-01-01
- 使用堆栈算法进行括号/括号匹配 2022-01-01
