1,有的時候,咱們想刪除某個文件時,會報說路徑過長,刪除不了的問題。解決辦法有:html
將文件壓縮,在壓縮的時候,選擇將源文件刪除。而後再刪除壓縮包便可。這個方法簡單快捷。java
參考:http://www.xitongcheng.com/jiaocheng/dnrj_article_14047.htmlsql
2.在線編輯好用:http://www.atool.org/ (不少功能,好比xml格式化等)ide
3.如何查詢當天的最後時間:23:59:59( //轉換結束時間爲當天的23:59:59)orm
(1)直接用java轉換:xml
A.Date endDate = param.getEndDate();
if(endDate != null){
endDate.setHours(23);
endDate.setMinutes(59);
endDate.setSeconds(59);
param.setEndDate(endDate);
}htm
B.SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
if(paramEnity.getEndDate() != null){
String endDateS = simpleDateFormat.format(paramEnity.getEndDate()).replaceAll(" 00:00:00", " 23:59:59");
Date endDate = simpleDateFormat.parse(endDateS);
paramEnity.setEndDate(endDate);
}ci
(2)直接使用sql:使用時間+1,小於便可get
select sr.creation_date,sr.incident_number
from a sr
where sr.org_id = 304
and sr.creation_date >= to_date('2019-02-11', 'yyyy-mm-dd')
and sr.creation_date<to_date('2019-02-11', 'yyyy-mm-dd')+1; it