上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 17 下一页
摘要: 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)
摘要: /** * 创建文件夹 */ 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)
摘要: 一: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)
摘要: 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)
摘要: 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)
摘要: 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)
摘要: <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)
摘要: <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)
摘要: <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)
摘要: 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 下一页