上一页 1 2 3 4 5 6 7 8 ··· 25 下一页
摘要: https://blog.csdn.net/wang_da_bing/article/details/87557753 阅读全文
posted @ 2019-11-17 16:57 Andrew_F 阅读(90) 评论(0) 推荐(0) 编辑
摘要: 默认升序 package peng; import java.util.Arrays; public class Testexample { public static void main(String[] args) { int[] a = {9, 8, 7, 2, 3, 4, 1, 0, 6, 阅读全文
posted @ 2019-11-16 18:25 Andrew_F 阅读(1608) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/qq_42851002/article/details/81327770 场景:用户扫描微信公众号的二维码,关注后自动登录网站,若已关注则直接登录。 逻辑: 1.系统生成带参数(此参数自定义为唯一值)的临时二维码(微信公众平台有提供该接口,可查看一下开发文 阅读全文
posted @ 2019-11-15 20:24 Andrew_F 阅读(3296) 评论(1) 推荐(0) 编辑
摘要: public class MyList { Entry head; class Entry { Object data; Entry next; public Entry(Object data) { this.data = data; this.next = null; } public Entr 阅读全文
posted @ 2019-11-12 20:15 Andrew_F 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 被观察者为商品,观察者为具体的业务实现,如发邮件,修改页面价格;当商品价格变化后,通知所有被观察者进行业务更新 package observer; import java.util.HashSet; /** * @description 被观察者 **/ public class Product { 阅读全文
posted @ 2019-11-12 11:21 Andrew_F 阅读(101) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/zhi-leaf/p/8508071.html 1、方法一,通过apache的httpclient import java.util.ArrayList; import java.util.HashMap; import java.util.List; 阅读全文
posted @ 2019-11-06 10:30 Andrew_F 阅读(459) 评论(0) 推荐(0) 编辑
摘要: https://www.jianshu.com/p/dca49964af04 阅读全文
posted @ 2019-10-26 17:28 Andrew_F 阅读(148) 评论(0) 推荐(0) 编辑
摘要: 官网:https://www.ubuntu.com/download/desktop 没找到历史版本,且下载速度很慢 在网易镜像站下载ubuntu: 网址:http://mirrors.163.com/ubuntu-releases/ 选择你想下载的版本,我选择 14.04/ 点击进去,如下: 阅读全文
posted @ 2019-10-25 16:41 Andrew_F 阅读(256) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/yeya/p/10320885.html https://www.cnblogs.com/chenlinghong/p/8339555.html 阅读全文
posted @ 2019-10-24 20:33 Andrew_F 阅读(5173) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/qq_35992900/article/details/80429245 因为是要任务执行一次的时候才会去修改时间的cron表达式,所以改了cron后,要在下下次任务执行时才会生效。 这里核心的主要是使用到了ScheduledTaskRegistrar这个 阅读全文
posted @ 2019-10-21 16:58 Andrew_F 阅读(10892) 评论(2) 推荐(1) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 25 下一页