11 2017 档案

摘要:/** * 将long值转换为以小时计算的格式 * @param mss * @return */ public static String formatLongTime(long mss) { String DateTimes = null; long hours = (mss % ( 60 * 60 * ... 阅读全文
posted @ 2017-11-06 20:52 xwer 阅读(8455) 评论(0) 推荐(0)
摘要:Windows平台 两步方法 : 1 查询端口占用,2 强行杀死进程 netstat -aon|findstr "8080" taskkill /pid 4136-t -f 在windows命令行窗口下执行过程 1.查看指定端口的占用情况netstat -aon|findstr "8080" 协议 阅读全文
posted @ 2017-11-04 14:25 xwer 阅读(150643) 评论(0) 推荐(7)