package com.diandaxia.test; import java.sql.Timestamp; import java.util.Date; /** * Created by del-berlin on 2017-03-07. */ public class UserInfo { private String name; private int age; private boolean sex; private Date birthday; private Timestamp en…
·使用一个date-fns/format的库 安装npm i date-fns --save import format from 'date-fns/format'; const newdate = new Date(); console.log( format(newdate, 'YYYY-MM-DD HH:mm:ss') );…
一.String与Date(java.util.Date)互转 1.1 String -> Date Date date = DateFormat.parse(String str); String dateStr = "2010/05/04 12:34:23"; Date date = new Date(); //注意format的格式要与日期String的格式相匹配 DateFormat sdf = new SimpleDateFormat("yyyy/MM/d…
用Timestamp来记录日期时间还是很方便的,但有时候显示的时候是不需要小数位后面的毫秒的,这样就需要在转换为String时重新定义格式. Timestamp转化为String: SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");//定义格式,不显示毫秒 Timestamp now = new Timestamp(System.currentTimeMillis());//获取系统当前时…
java.text.MessageFormat格式化字符串时的小技巧 public static void main(String[] args) throws InterruptedException { MessageFormat form = new MessageFormat( "{2,date,yyyy-MM-dd HH:mm:ss.SSS} The disk \"{1}\" contains {0,number,#.##} file(s).{3}");…
String 类的静态方法format()方法用于创建格式化字符串,format()方法有两种重载形式: format(String fromat,Object...args) 该方法使用指定的格式字符串和参数返回一个格式化的字符串,格式化后的新字符串使用本地默认的语言环境. 语法:String.format(String.format,Object...args) Date date = new Date(); String.format("%tH",date); format(Lo…