av亚洲一区_黄色片久久久久_欧美h视频_91麻豆网站_538任你躁在线精品视频网站_很污很污的网站

物流問答

為什么快遞抵達目的地后無法查詢物流盯梢了思維變做失控 | 1分鐘前 | 共享

2023/3/28 14:34:27 來源:貨代軟件公司
內容摘要:/** * 顯現時刻,假如與當時時刻不同小于一天,則自動用**秒(分,小時)前,假如大于一天則用format規則的格局顯現 * * @author wxy * @param ctime * 時刻 * @param format * 格局 格局描繪:例如:yyyy-MM-dd yyyy-MM-dd HH:mm:ss * @return */ public static String showTime(Date ctim...
/**
* 顯現時刻,假如與當時時刻不同小于一天,則自動用**秒(分,小時)前,假如大于一天則用format規則的格局顯現
*
* @author wxy
* @param ctime
* 時刻
* @param format
* 格局 格局描繪:例如:yyyy-MM-dd yyyy-MM-dd HH:mm:ss
* @return
*/
public static String showTime(Date ctime, String format) {
String r = “”;
if(ctime==null)return r;
if(format==null)format=”yyyy-MM-dd HH:mm”;

long nowtimelong = System.currentTimeMillis();
long ctimelong = ctime.getTime();
long result = Math.abs(nowtimelong – ctimelong);

if (result < 60000)// 一分鐘內
{
long seconds = result / 1000;
r = seconds + “秒鐘前”;
} else if (result >= 60000 && result < 3600000)// 一小時內
{
long seconds = result / 60000;
r = seconds + “分鐘前”;
} else if (result >= 3600000 && result < 86400000)// 一天內
{
long seconds = result / 3600000;
r = seconds + “小時前”;
} else// 日期格局
{
r = DateTime.formatTime(ctime, format);
}
return r;
}
請采用答案,支撐我一下。

http://www.f1250.cn/wuliuwenda/22400.html 為什么快遞抵達目的地后無法查詢物流盯梢了思維變做失控 | 1分鐘前 | 共享

免責聲明:本文章部分圖片素材和內容素材來源于網絡,僅供學習與參考,不代表本站立場,如果損害了您的權利,請聯系網站客服,我們核實后會立即刪除。

標簽:

快遞
在線咨詢
QQ咨詢
微信咨詢
微信咨詢
電話咨詢
周一至周五 9:00-18:00
135-1055-3738
回頂部 主站蜘蛛池模板: 富阳市| 阳山县| 奇台县| 平和县| 连云港市| 延边| 门头沟区| 疏勒县| 临颍县| 宁远县| 栖霞市| 鹤峰县| 乐平市| 麦盖提县| 陇西县| 韶关市| 屏东县| 永吉县| 贞丰县| 微博| 荆州市| 阜城县| 安泽县| 孟州市| 武鸣县| 泗水县| 古丈县| 禹城市| 工布江达县| 夏津县| 天全县| 杭锦旗| 磐石市| 新田县| 大渡口区| 航空| 罗江县| 乐至县| 壶关县| 新泰市| 崇州市|