上一页 1 2 3 4 5 6 ··· 11 下一页
摘要: /** * 查找list中是否有指定元素 */ @Test public void findListEl() { List<Integer> integers = Arrays.asList(3, 5, 2, 7, 8, 1, 9); Integer kw1 = 9; Integer kw2 = 6 阅读全文
posted @ 2022-07-13 20:52 淡怀 阅读(3571) 评论(0) 推荐(0) 编辑
摘要: package com.crawler.boos.chrome.test; import com.alibaba.fastjson.JSONArray; import lombok.Data; import org.springframework.boot.test.context.SpringBo 阅读全文
posted @ 2022-07-13 20:38 淡怀 阅读(77) 评论(0) 推荐(0) 编辑
摘要: public class ResourceUtil { /** * 获取resources路径下的文件路径 * * @param filePath 若文件路径为“E:\Code\UiAuto\boos\src\main\resources\driver\chromedriver.exe” 则仅传“d 阅读全文
posted @ 2022-07-08 17:56 淡怀 阅读(958) 评论(0) 推荐(0) 编辑
摘要: 1、Python爬虫IP代理教程,让你不再为IP被封禁发愁! 2、接口调用查看本机IP GET:http://httpbin.org/ip 阅读全文
posted @ 2022-07-08 12:02 淡怀 阅读(202) 评论(0) 推荐(0) 编辑
摘要: public static void main(String[] args) { Integer a = new Integer(1); Integer b = new Integer(1); System.out.println(a == b); // false(==:对比的是两个变量的内存地址 阅读全文
posted @ 2022-07-07 21:14 淡怀 阅读(337) 评论(0) 推荐(0) 编辑
摘要: 一、报错 java: 无法访问org.testng.annotations.Test 错误的类文件: /D:/Java/config/repository/org/testng/testng/7.6.0/testng-7.6.0.jar!/org/testng/annotations/Test.cl 阅读全文
posted @ 2022-07-07 13:23 淡怀 阅读(6740) 评论(2) 推荐(4) 编辑
摘要: https://mvnrepository.com/ 阅读全文
posted @ 2022-07-07 13:15 淡怀 阅读(39) 评论(0) 推荐(0) 编辑
摘要: 1、【源码时代】https://www.itsource.cn/ 2、【传智教育】https://www.itcast.cn/ 3、【北大青鸟】https://www.bdqn.cn/ 4、【达内】http://cds.tedu.cn/ 5、【网时代】http://www.wangshidai.cn 阅读全文
posted @ 2022-07-05 17:12 淡怀 阅读(336) 评论(0) 推荐(0) 编辑
摘要: 一、需求 对JSON的key根据首字母排序 若首字母相同对比下一个字母 依次类推 二、效果 三、代码 maven <dependencies> <dependency> <groupId>com.alibaba</groupId> <artifactId>fastjson</artifactId> 阅读全文
posted @ 2022-07-05 10:40 淡怀 阅读(5832) 评论(0) 推荐(1) 编辑
摘要: https://blog.csdn.net/qq_45564088/article/details/121907231 阅读全文
posted @ 2022-06-20 22:38 淡怀 阅读(19) 评论(0) 推荐(0) 编辑
摘要: -.js -.css -.png -.jpg -.gif -.htm -.woff 在Filter输入框中 输入-:可以激活提示 输入-.js:表示不显示js请求(即-为取反的作用) 输入.js:表示仅显示js请求 输入-.js -.css:表示不显示js和css请求(多个条件用空格区分) 输入/. 阅读全文
posted @ 2022-06-20 22:17 淡怀 阅读(841) 评论(0) 推荐(0) 编辑
摘要: 参考 阅读全文
posted @ 2022-06-20 18:58 淡怀 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 1、编写备份mysql的shell脚本 /root/TimedTask/databaseBackeups.sh #!/bin/bash mysqldump -u root --password=连接数据库的密码 数据库名称>/root/TimedTask/backData/backups-`date 阅读全文
posted @ 2022-06-17 11:06 淡怀 阅读(120) 评论(0) 推荐(0) 编辑
摘要: 一、排查 1.1、确认Linux服务器时区 timedatectl Linux服务器时区是上海的 没问题 1.2、确认Linux中的Mysql时区 // 登录Mysql mysql -u root -p // 查看Mysql时区 show variables like'%time_zone'; 如果 阅读全文
posted @ 2022-06-16 14:59 淡怀 阅读(753) 评论(0) 推荐(0) 编辑
摘要: date // Wed Jun 15 07:17:03 PM CST 2022 date +"%Y-%m-%d %H:%M:%S,%s" // 2022-06-15 19:17:10,1655291830 阅读全文
posted @ 2022-06-15 19:19 淡怀 阅读(61) 评论(0) 推荐(0) 编辑
摘要: 参考 阅读全文
posted @ 2022-06-15 10:43 淡怀 阅读(38) 评论(0) 推荐(0) 编辑
摘要: import java.util.regex.Matcher; import java.util.regex.Pattern; /** * @Author: * @Date: 2022/6/13 17:35 * @Description: 通用工具 * @Version: v1.0 */ publi 阅读全文
posted @ 2022-06-13 17:43 淡怀 阅读(84) 评论(0) 推荐(0) 编辑
摘要: 一、问题 后端返回了long型数值,但是前端接收后,后面的几位都变成0了,如图所示 二、原因 由于JavaScript中Number类型的自身原因,并不能完全表示Long型的数字,在Long长度大于17位时会出现精度丢失的问题。(图片中的id为19位) 三、解决 3.1、在后台把long型改为Str 阅读全文
posted @ 2022-06-11 11:11 淡怀 阅读(1693) 评论(0) 推荐(0) 编辑
摘要: if __name__ == '__main__': dictStr = "{'A':'aValue'}" print(type(dictStr), dictStr) # 字符串字典 转 字典 print(type(eval(dictStr)), eval(dictStr)) # 字符串字典 转 字 阅读全文
posted @ 2022-06-10 10:22 淡怀 阅读(62) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-06-09 18:49 淡怀 阅读(322) 评论(0) 推荐(0) 编辑
摘要: private String getIpAddress(HttpServletRequest request) { String ip = request.getHeader("x-forwarded-for"); if (ip == null || ip.length() == 0 || "unk 阅读全文
posted @ 2022-06-09 15:55 淡怀 阅读(2779) 评论(0) 推荐(0) 编辑
摘要: 一、问题 二、解决 在application.yml文件中添加 mybatis-plus: configuration: # mybatis-plus默认开启了下滑线转换驼峰 需要关闭(设置为false) map-underscore-to-camel-case: false 或者在applicat 阅读全文
posted @ 2022-06-09 14:12 淡怀 阅读(1277) 评论(0) 推荐(0) 编辑
摘要: 参考 import org.springframework.beans.BeanUtils; BeanUtils.copyProperties(dto1, dto2) // 将 dto1 转换为 dto2 阅读全文
posted @ 2022-06-08 19:07 淡怀 阅读(516) 评论(0) 推荐(0) 编辑
摘要: 一、Mysql表字段转Java实体(sql语句) SELECT concat( '\n/**\n', ' * ', v.column_comment, '\n', ' */\n', 'public ', v.dataType, ' ', v.column_name, ';' ) resultData 阅读全文
posted @ 2022-06-08 11:26 淡怀 阅读(837) 评论(0) 推荐(0) 编辑
摘要: https://www.modb.pro/db/150246 阅读全文
posted @ 2022-06-06 16:59 淡怀 阅读(58) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/DoNetCShap/p/15187490.html 阅读全文
posted @ 2022-05-26 23:35 淡怀 阅读(50) 评论(0) 推荐(0) 编辑
摘要: 一、打开word文档 def openWord(): """ 自动打开当前路径下的 “操作教程.doc” 文档 :return: """ from win32com import client as wc wordPath = os.path.join(os.getcwd(), '操作教程.doc' 阅读全文
posted @ 2022-05-25 15:27 淡怀 阅读(328) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/env python # -*- coding: utf-8 -*- """ @Time :2022/5/23 9:48 @Author : @File :observer.py @Version :1.0 @Function:观察者模式/监听模式 """ """ 观察者基类 阅读全文
posted @ 2022-05-23 19:41 淡怀 阅读(116) 评论(0) 推荐(0) 编辑
摘要: CertUtil -hashfile <文件路径> MD5 阅读全文
posted @ 2022-05-19 16:14 淡怀 阅读(232) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/sinat_38682860/article/details/93388503?spm=1001.2101.3001.6650.1&utm_medium=distribute.pc_relevant.none-task-blog-2%7Edefault%7 阅读全文
posted @ 2022-05-17 14:28 淡怀 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 1、Charles导出的har格式文件 实际就是一个json文件(直接用代码解析json即可获取接口数据) 2、Charles导出的数据中 接口返回数据是用base64加密的 解密下就行了 阅读全文
posted @ 2022-05-13 15:17 淡怀 阅读(1615) 评论(0) 推荐(0) 编辑
摘要: 一、报错 二、排查 1、报错说不能找到enum.Enum这个东西 但是通过代码定位 能够找到(这时候就要想到 肯定有一个包名或者py文件名称是enum 造成冲突了) 2、果不其然 自己代码这里有个包名是enum 改名称后 就正常了 阅读全文
posted @ 2022-05-02 17:05 淡怀 阅读(1597) 评论(0) 推荐(0) 编辑
摘要: 1、字符串截取: right("strabcd",4) # 截取右边4位 left("strabcd",4) # 截取左边4位 2、字符串拼接: concat("str1","str2",...) # 拼接多个字符串 3、字符串与数字之间相互转换 字符串转数字:cast("1234" as sige 阅读全文
posted @ 2022-04-28 20:17 淡怀 阅读(1202) 评论(0) 推荐(0) 编辑
摘要: 参考1、https://blog.csdn.net/qq_52360069/article/details/124187136?spm=1001.2100.3001.7377&utm_medium=distribute.pc_feed_blog_category.none-task-blog-cla 阅读全文
posted @ 2022-04-28 10:29 淡怀 阅读(15) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/shi_hong_fei_hei/article/details/118113639?spm=1001.2100.3001.7377&utm_medium=distribute.pc_feed_blog_category.none-task-blog-cl 阅读全文
posted @ 2022-04-28 10:04 淡怀 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 命令:fsutil file createnew [文件名] [文件大小] 备注:文件大小 1073741824(1024*1024*1024) 如:fsutil file createnew abc.txt 1073741824 阅读全文
posted @ 2022-04-27 12:04 淡怀 阅读(268) 评论(0) 推荐(0) 编辑
摘要: 1、谷歌浏览器扩展程序manifest.json参数详解 2、js 组合键 按键操作 manifest.json文件 { "name": "名称", "description": "copy的接口请求头转JSON(快捷键:Ctrl+Shift+Q)", "author": "WeiSi", "ver 阅读全文
posted @ 2022-04-22 15:25 淡怀 阅读(84) 评论(0) 推荐(0) 编辑
摘要: 一、新建proto文件 新建一个mytest.proto文件 syntax = "proto3"; package cc.protobuf; option java_package = "cc.protobuf.model"; option java_multiple_files = true; o 阅读全文
posted @ 2022-04-08 16:35 淡怀 阅读(291) 评论(0) 推荐(0) 编辑
摘要: 1、编译器下载 https://github.com/protocolbuffers/protobuf/releases 将解压后的 “protoc.exe” 文件所在路径添加到PATH变量 2、测试是否安装成功 protoc --version 阅读全文
posted @ 2022-04-08 16:25 淡怀 阅读(475) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/dingmanzzz/article/details/113449275 if __name__ == '__main__': pa = r'C:\Users\hha\Desktop\002594.txt' # 获取文件路径 print(os.path.d 阅读全文
posted @ 2022-04-07 00:34 淡怀 阅读(54) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 11 下一页