05 2020 档案
摘要:1、输入netstat -ano,查看所有端口的情况,找到被占用的端口 2、输入netstat -aon|findstr “端口号”,按回车键就可以找到占用8080端口的PID 3、查找进程名为xxx的进程 tasklist | findstr “xxx” 4、杀死pid为xxx的进程 taskki
阅读全文
摘要:首先说明一下:原本我是跟着尚硅谷的周阳老师的视频去安装mysql的,但是槽点来啦!!!! 老是报这个错误 libgcc_s.so.1 must be installed for pthread_cancel to work 百度一下(面向百度编程),结果搞了好久,不行,我真的是佛了,算了,还是自己百
阅读全文
摘要:onLoadSuccess:function(){ //缩起所有 $(this).tree('collapseAll'); // 获取根节点 var root =$(this).tree('getRoot').target //展开根节点 $(this).tree('expand',root.tar
阅读全文
摘要:调用 1 String url = "http://www.google.com/"; 2 BareBonesBrowserLaunch.openURL(url); 方法 ///////////////////////////////////////////////////////// //Bare
阅读全文
摘要:1、首先定义一个拦截器 package com.leyou.interceptor; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.web.servlet.HandlerInte
阅读全文
摘要:http://note.youdao.com/s/ZE7i7Czx
阅读全文
摘要:1、使用注解导出excel 2、使用模板导出excel /** * @Description: * @param response * @param request * @param planTotalId * @param planTotalIdGroup * @param orgId * @au
阅读全文