1 2 3 4 5 ··· 10 下一页
摘要: 阅读全文
posted @ 2025-05-22 14:31 黑狗已醒 阅读(2) 评论(0) 推荐(0)
摘要: 第一种:通过url 下载 1.修改nginx 配置 location /downloads/ { alias /usr/file/; autoindex on; add_header Content-Disposition 'attachment; filename="$uri"'; sendfil 阅读全文
posted @ 2025-03-05 17:08 黑狗已醒 阅读(103) 评论(0) 推荐(0)
摘要: 《1》Http 的post 请求和get 请求 《2》 字符串 转码 《3》两个字符串日期算出多少天 《4》 LocalDate date = LocalDate.parse(dateStr); date .plusDays(-4) // 减4天 date.plusDays(-30) // 减30天 阅读全文
posted @ 2025-02-13 15:18 黑狗已醒 阅读(4) 评论(0) 推荐(0)
摘要: DataFormatter formatter = new DataFormatter(); Workbook workbook = new XSSFWorkbook(file.getInputStream()); Sheet sheet = workbook.getSheet("sheet1"); 阅读全文
posted @ 2025-01-03 10:15 黑狗已醒 阅读(14) 评论(0) 推荐(0)
摘要: 《1》select * FROM gs_day_trade_list a WHERE deal_time IN ( SELECT MAX( deal_time ) FROM gs_day_trade_list where data_date='2025-01-03' and trade_date=' 阅读全文
posted @ 2025-01-03 10:05 黑狗已醒 阅读(40) 评论(0) 推荐(0)
摘要: import org.springframework.http.MediaType;import org.springframework.web.bind.annotation.GetMapping;import org.springframework.web.bind.annotation.Res 阅读全文
posted @ 2024-12-02 09:25 黑狗已醒 阅读(122) 评论(0) 推荐(0)
摘要: 1.分区的字段必须主键其中之一; ALTER TABLE zj_node_price ADD PRIMARY KEY (id,data_date); ALTER TABLE zj_node_price ADD INDEX u_data_date (data_date) alter table zj_ 阅读全文
posted @ 2024-11-19 16:38 黑狗已醒 阅读(761) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2024-11-15 16:54 黑狗已醒 阅读(5) 评论(0) 推荐(0)
摘要: 1.引入pom 文件 <dependency> <groupId>org.jsoup</groupId> <artifactId>jsoup</artifactId> <version>1.17.2</version> </dependency> 2.使用在线解析html 工具 ,自己先看清 htm 阅读全文
posted @ 2024-08-16 15:56 黑狗已醒 阅读(285) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2024-08-09 17:37 黑狗已醒 阅读(37) 评论(0) 推荐(0)
1 2 3 4 5 ··· 10 下一页