欢迎访问『www.cnblogs.com/blog-ice』
上一页 1 ··· 3 4 5 6 7 8 9 下一页
  2018年9月10日
摘要: select t.id from (select xxx) t 阅读全文
posted @ 2018-09-10 20:09 仙路尽头谁为峰 阅读(863) 评论(0) 推荐(0) 编辑
  2018年8月8日
摘要: 1.list.sort(new Comparator<String>() { @override public int compare(String o1, String o2) { return Integer.valueOf(o1) - Integer.valueOf(o2);// 从小到大 / 阅读全文
posted @ 2018-08-08 10:08 仙路尽头谁为峰 阅读(218) 评论(0) 推荐(0) 编辑
  2018年7月26日
摘要: 在启动jar包添加如下参数16091是端口 java -Xdebug -Xrunjdwp:transport=dt_socket,address=16091,server=y,suspend=n -jar xxx.jar 在eclipse/sts中debug配置中添加Remote Java Appl 阅读全文
posted @ 2018-07-26 14:18 仙路尽头谁为峰 阅读(213) 评论(0) 推荐(0) 编辑
  2018年7月25日
摘要: 参考网址: http://man.linuxde.net/pgrep http://www.runoob.com/linux/linux-command-manual.html (find . -name *.yml && find . -name *.properties) | xargs gre 阅读全文
posted @ 2018-07-25 11:44 仙路尽头谁为峰 阅读(229) 评论(0) 推荐(0) 编辑
  2018年7月11日
摘要: 富爸爸穷爸爸 1.贫穷和破产的区别是:破产是暂时的,而贫穷是永久的。 2.富人让钱为他工作。 3.分清资产和负债,增加资产项。(资产是能把钱放进我口袋里的东西。负债是把钱从我口袋里取走的东西。) 阅读全文
posted @ 2018-07-11 14:08 仙路尽头谁为峰 阅读(343) 评论(0) 推荐(0) 编辑
  2018年6月27日
摘要: 1.vim如何删除文件中所有东西 方法1: 按ggdG方法2: :%d 阅读全文
posted @ 2018-06-27 13:52 仙路尽头谁为峰 阅读(196) 评论(0) 推荐(0) 编辑
摘要: 将多行转换成一行 select group_concat(id, ':', name) from user 结果: id:name,id:name,id:name..... 阅读全文
posted @ 2018-06-27 10:50 仙路尽头谁为峰 阅读(206) 评论(0) 推荐(0) 编辑
  2018年6月26日
摘要: 1.添加依赖 commons-net-3.6.jar 2.获取ftp客户端 ftpClient = new FTPClient(); ftpClient.connect(ip, port); ftpClient.login(username, password); ftpClient.setBuff 阅读全文
posted @ 2018-06-26 11:34 仙路尽头谁为峰 阅读(245) 评论(0) 推荐(0) 编辑
摘要: 1.添加依赖 com.jcraft:jsch ch.ethz.ganymed:ganymed-ssh2:262 2.获取连接 conn = new Connection(ip, port); conn.connect(); conn.authenticateWithPassword(username 阅读全文
posted @ 2018-06-26 10:57 仙路尽头谁为峰 阅读(579) 评论(0) 推荐(0) 编辑
  2018年6月22日
摘要: 解决方案: ie浏览器--设置--Intenet选项--安全--Internet--自定义级别--用户身份验证--登陆 勾选自动使用当前用户名和密码登陆 确定--确定 阅读全文
posted @ 2018-06-22 14:58 仙路尽头谁为峰 阅读(4280) 评论(1) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 下一页
这里是自由发挥的天堂