会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Andrew_F
博客园
首页
新随笔
联系
管理
上一页
1
2
3
4
5
6
7
8
···
25
下一页
2019年11月17日
集合2-java集合工具运用
摘要: https://blog.csdn.net/wang_da_bing/article/details/87557753
阅读全文
posted @ 2019-11-17 16:57 Andrew_F
阅读(98)
评论(0)
推荐(0)
2019年11月16日
集合(一)-Java中Arrays.sort()自定义数组的升序和降序排序
摘要: 默认升序 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
阅读(1655)
评论(0)
推荐(0)
2019年11月15日
Java 扫描微信公众号二维码,关注并自动登录网站
摘要: https://blog.csdn.net/qq_42851002/article/details/81327770 场景:用户扫描微信公众号的二维码,关注后自动登录网站,若已关注则直接登录。 逻辑: 1.系统生成带参数(此参数自定义为唯一值)的临时二维码(微信公众平台有提供该接口,可查看一下开发文
阅读全文
posted @ 2019-11-15 20:24 Andrew_F
阅读(3529)
评论(1)
推荐(0)
2019年11月12日
java 实现链表
摘要: 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
阅读(140)
评论(0)
推荐(0)
观察者模式
摘要: 被观察者为商品,观察者为具体的业务实现,如发邮件,修改页面价格;当商品价格变化后,通知所有被观察者进行业务更新 package observer; import java.util.HashSet; /** * @description 被观察者 **/ public class Product {
阅读全文
posted @ 2019-11-12 11:21 Andrew_F
阅读(106)
评论(0)
推荐(0)
2019年11月6日
Java发送Http请求
摘要: 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
阅读(466)
评论(0)
推荐(0)
2019年10月26日
linux 远程配置docker加速器
摘要: https://www.jianshu.com/p/dca49964af04
阅读全文
posted @ 2019-10-26 17:28 Andrew_F
阅读(155)
评论(0)
推荐(0)
2019年10月25日
Ubuntu各个版本下载
摘要: 官网:https://www.ubuntu.com/download/desktop 没找到历史版本,且下载速度很慢 在网易镜像站下载ubuntu: 网址:http://mirrors.163.com/ubuntu-releases/ 选择你想下载的版本,我选择 14.04/ 点击进去,如下:
阅读全文
posted @ 2019-10-25 16:41 Andrew_F
阅读(307)
评论(0)
推荐(0)
2019年10月24日
idea 启动ssm项目
摘要: https://www.cnblogs.com/yeya/p/10320885.html https://www.cnblogs.com/chenlinghong/p/8339555.html
阅读全文
posted @ 2019-10-24 20:33 Andrew_F
阅读(5205)
评论(0)
推荐(0)
2019年10月21日
Springboot定时任务实现动态配置Cron参数(从外部数据库获取)
摘要: https://blog.csdn.net/qq_35992900/article/details/80429245 因为是要任务执行一次的时候才会去修改时间的cron表达式,所以改了cron后,要在下下次任务执行时才会生效。 这里核心的主要是使用到了ScheduledTaskRegistrar这个
阅读全文
posted @ 2019-10-21 16:58 Andrew_F
阅读(11430)
评论(2)
推荐(1)
上一页
1
2
3
4
5
6
7
8
···
25
下一页
公告