会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
qwer78
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
4
5
6
7
8
9
10
11
12
···
17
下一页
2020年9月9日
Jsoup执行post方法调用接口
摘要: public static void main(String[] args) { String[] ips = "58.220.74.143:80".split(":"); Connection connection = Jsoup.connect("http://esf.org.cn/new/pu
阅读全文
posted @ 2020-09-09 16:39 qwer78
阅读(264)
评论(0)
推荐(0)
2020年9月3日
File Path使用
摘要: /** * 创建文件夹 */ public static boolean createDirectories(Path path) { if (!Files.exists(path)) { try { Files.createDirectories(path); } catch (IOExcepti
阅读全文
posted @ 2020-09-03 16:36 qwer78
阅读(227)
评论(0)
推荐(0)
2020年7月7日
spring cloud alibaba 2.2.1 入门教程
摘要: 一:nacos相关 先下载nacos 1.3,直接官网下载解压即可 由于我使用的mysql是8.0,默认支持的是5版本,所以需要修改点东西 在解压文件里面新建文件夹如 D:\nacos\plugins\mysql 然后将8版本的java驱动包放进去(linux同理) 2.新建数据库nacos,执行下
阅读全文
posted @ 2020-07-07 17:20 qwer78
阅读(43)
评论(0)
推荐(0)
2020年6月15日
Java8 日期/时间 工具类
摘要: import org.apache.commons.lang3.StringUtils; import java.time.LocalDate; import java.time.LocalDateTime; import java.time.ZoneOffset; import java.time
阅读全文
posted @ 2020-06-15 11:28 qwer78
阅读(67)
评论(0)
推荐(0)
2020年6月10日
poi 多个excel合并
摘要: import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import java.util.ArrayList; import j
阅读全文
posted @ 2020-06-10 16:37 qwer78
阅读(295)
评论(0)
推荐(0)
2020年5月26日
list分段截取
摘要: public static void main(String[] args) { List<String> list = new ArrayList<>(); getUserIdsPage("3", 0L, list); System.err.println("一共有 >" + list.size(
阅读全文
posted @ 2020-05-26 16:15 qwer78
阅读(114)
评论(0)
推荐(0)
获取钉钉打卡数据并导出Excel
摘要: <dependency> <groupId>com.alibaba</groupId> <artifactId>easyexcel</artifactId> <version>2.2.3</version> </dependency> <dependency> <groupId>com.taobao
阅读全文
posted @ 2020-05-26 14:40 qwer78
阅读(357)
评论(0)
推荐(0)
2020年5月14日
springboot 依赖 本地jar 并打包为jar
摘要: <dependency> <groupId>com.taobao.top</groupId> <artifactId>taobao-sdk-java-auto</artifactId> <version>1.0.0</version> <scope>system</scope> <systemPat
阅读全文
posted @ 2020-05-14 18:00 qwer78
阅读(83)
评论(0)
推荐(0)
2020年5月8日
selenium 模拟登陆 并获取登陆后的cookie等信息 java
摘要: <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-java</artifactId> <version>3.141.59</version> </dependency> package com.e
阅读全文
posted @ 2020-05-08 13:58 qwer78
阅读(232)
评论(0)
推荐(0)
2020年5月7日
springboot + redis 多数据源 (相同 + 完全独立)
摘要: spring.redis.common.database.index=0 spring.redis.common.lettuce.pool.min-idle=0 spring.redis.common.lettuce.pool.max-idle=8 spring.redis.common.lettu
阅读全文
posted @ 2020-05-07 09:08 qwer78
阅读(53)
评论(0)
推荐(0)
上一页
1
···
4
5
6
7
8
9
10
11
12
···
17
下一页
公告