package com.example.demo.utils; import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date; public class DateTimeTrans { public static void main(String[] args) { Date date = new Date();
try {
date = new SimpleDateFormat("HH:mm").parse("13:12:11");
} catch (ParseException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
String now = new SimpleDateFormat("HH:mm").format(date);
System.out.println(now);//13:12
}
}
相关文章
- Java-把日期字符串转换成另一种格式的日期字符串
- python 日期、时间处理,各种日期时间格式/字符串之间的相互转换究竟是怎样的?
- MVC扩展ModelBinder使类型为DateTime的Action参数可以接收日期格式的字符串
- 如何解析可能采用两种不同日期格式的日期字符串,并在iOS和Android中将其显示为本地时间?
- LINQ中条件语句为格式化日期字符串比较时报错的解决方法之一
- C#语言之“string格式的日期时间字符串转为DateTime类型”的方法(转)
- 【转】C#语言之“string格式的日期时间字符串转为DateTime类型”的方法
- C# 指定日期转换字符串的格式
- js把日期字符串转换成时间戳 阿星小栈
- 如何将系统日期添加到需要字符串格式的日期的函数?