`
文章列表
2 <%=Html.TextAreaFor(Model => Model.WORK_INTRODUCTION)%> 3 <script type="text/javascript"> 4  CKEDITOR.replace('WORK_INTRODUCTION'); 5 </script> 1、获取CKEditor被选中的内容 var mySelection = CKEDITOR.instances.WORK_INTRODUCTION.getSelection();         if (CKEDITOR.env.ie) { ...
1 、 查看当天日期 select current_date(); 2、 查看当天时间 select current_time(); 3、查看当天时间日期 select current_timestamp(); 查看当然 时间包含 select * from tableName where current_timestamp() BETWEEN  start_time and END_TIME 4、查询当天记录 select * from 表名 where to_days(时间字段名) = to_days(now()); 5、查询昨天记录 SELECT ...
比如:现在是2004-03-26 13:31:40        过去是:2004-01-02 11:30:24 我现在要获得两个日期差,差的形式为:XX天XX小时XX分XX秒 方法一: DateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); try {     Date d1 = df.parse("2004-03-26 13:31:40");     Date d2 = df.parse("2004-01-02 11:30:24");     lon ...
工具类 MessageTools.java package com.cm.util; import java.io.IOException; import java.util.ArrayList; import java.util.Date; import java.util.List; import java.util.Properties; import javax.activation.DataHandler; import javax.activation.FileDataSource; import javax.mail.Address; ...
Global site tag (gtag.js) - Google Analytics