博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java使用格式String型转成Date型
阅读量:5129 次
发布时间:2019-06-13

本文共 747 字,大约阅读时间需要 2 分钟。

public class TimeTwo {
public static void main(String[] args) throws ParseException{
String s = "2018-08-12 12:02:23"; SimpleDateFormat g = new SimpleDateFormat("yyyy-MM-dd MM:mm:ss"); try{
Date h = g.parse(s); // System.out.println(h); }catch (ParseException e){
e.printStackTrace(); } //格式String型转成Date型 DateFormat format3 = DateFormat.getDateInstance(DateFormat.LONG,Locale.SIMPLIFIED_CHINESE); try{
System.out.println("日期:"+format3.format(new Date())); }catch (Exception e){
e.printStackTrace(); } } }

转载于:https://www.cnblogs.com/THEONLYLOVE/p/9117776.html

你可能感兴趣的文章
17.2 The DispatcherServlet
查看>>
数据库建表需要注意的事
查看>>
cmake编译win下64位obs
查看>>
iOS进阶第一节 数据读写之文件读写
查看>>
P1108 低价购买
查看>>
【转】C++11 标准新特性:Defaulted 和 Deleted 函数
查看>>
C# - 泛型委托
查看>>
咏南开发框架调用存储过程演示
查看>>
Jackson2.1.4 序列化对象时,过滤null的属性 empty的属性 default的属性
查看>>
DevStack添加Swift
查看>>
RadControls for Silverlight Q2 2012 试用版探究
查看>>
Handling bundles in activities and fragments
查看>>
数据仓库的设计目的
查看>>
Linux C高级编程——网络编程基础(1)
查看>>
IOS版本号被拒的经历
查看>>
JavaScript 本地对象、内置对象、宿主对象
查看>>
servlet的url-pattern匹配规则详细描述
查看>>
spring boot 整合 云之讯 demo
查看>>
《大型网站技术架构》1:概述
查看>>
(PatchGANs)Pecomputed Real-time Texture Synthesis With Markovian Generative Adversarial Networks
查看>>