摘要: 1.序列化: 将java对象转化为字节序列 2.反序列化: 将字节序列恢复成java对象 3.序列化是干什么的: 1.保存在内存中的对象的状态 2.方便传输,实现对象的字节序列传输,如图像,视频等 4.实现 java提供两种方式一种是实现Serializable接口,另一种是实现Exteranliz 阅读全文
posted @ 2021-07-14 16:26 Sjhhhhh 阅读(141) 评论(0) 推荐(0) 编辑
摘要: jadx 下载地址:https://github.com/skylot/jadx/releases/tag/v1.2.0 打开要反编译的apk可见腾讯的壳 脱壳 FRIDA-DEXDump 下载地址:https://github.com/hluwa/FRIDA-DEXDump 模拟器需要有frida 阅读全文
posted @ 2021-07-13 17:28 Sjhhhhh 阅读(239) 评论(0) 推荐(0) 编辑
摘要: 以下使用夜神模拟器 下载地址:https://www.yeshen.com/ 进入设置 连续点击版本号5次打开开发者选项 打开usb调试 记得这里要重启一下!!! 找到安装目录D:\Program Files\Nox\bin下的nox_adb.exe cmd运行 3.frida 下载地址https: 阅读全文
posted @ 2021-07-13 17:24 Sjhhhhh 阅读(142) 评论(0) 推荐(0) 编辑
摘要: 1.安装redis yum intsall redis 2.本地连接 /bin 目录下 ./redis-server启动服务 redis-cli连接 3.外部连接 该错误需要修改配置文件 /etc/redis.conf 61行 注释 80行 将yes改为no 482行 设置密码 出现该错误需要在本地 阅读全文
posted @ 2021-07-13 17:05 Sjhhhhh 阅读(56) 评论(0) 推荐(0) 编辑
摘要: 1.打开文件 如果不存在会创建 <?php $file=fopen("path","w"); ?> r 只读。在文件的开头开始。 r+ 读/写。在文件的开头开始。 w 只写。打开并清空文件的内容;如果文件不存在,则创建新文件。 w+ 读/写。打开并清空文件的内容;如果文件不存在,则创建新文件。 a 阅读全文
posted @ 2021-04-17 20:14 Sjhhhhh 阅读(834) 评论(0) 推荐(0) 编辑
摘要: 模板: #include<bits/stdc++.h> using namespace std; int const N=1e5+5; char s[N*2],t[N]; int r[N*2]; int change() { int j=2,len=strlen(t); s[0]='$'; s[1] 阅读全文
posted @ 2019-12-08 18:36 Sjhhhhh 阅读(235) 评论(0) 推荐(1) 编辑
摘要: 1003 描述 Now,given the equation 8*x^4 + 7*x^3 + 2*x^2 + 3*x + 6 == Y,can you find its solution between 0 and 100;Now please try your lucky. Now,given t 阅读全文
posted @ 2019-10-25 17:17 Sjhhhhh 阅读(285) 评论(0) 推荐(0) 编辑
摘要: 3083: Ice-sugar Gourd 描述 Ice-sugar gourd, “bing tang hu lu”, is a popular snack in Beijing of China. It is made of some fruits threaded by a stick. Th 阅读全文
posted @ 2019-09-23 21:57 Sjhhhhh 阅读(402) 评论(0) 推荐(0) 编辑
摘要: Dominoes Game 描述 Recently, my lovely daughter YuYu indulges in playing a game called dominoes. When the game starts, I first place some blocks with va 阅读全文
posted @ 2019-09-21 16:17 Sjhhhhh 阅读(194) 评论(0) 推荐(0) 编辑
摘要: KMP字符串匹配 阅读全文
posted @ 2019-09-12 14:07 Sjhhhhh 阅读(262) 评论(0) 推荐(0) 编辑