参考(https://blog.csdn.net/bruce135lee/article/details/79790104),使用 ExtractIconEx 获取文件/扩展名图标,在实际使用过程中,会出现读取图标卡死情况; 经测试发现在文件少的目录不会出现卡死,但是在读取 c:\windows\s ...
分类:
其他好文 时间:
2019-09-26 14:58:03
阅读次数:
132
Mike and Ann are sitting in the classroom. The lesson is boring, so they decided to play an interesting game. Fortunately, all they need to play this ...
分类:
其他好文 时间:
2019-09-25 22:49:18
阅读次数:
163
MySQL 字符串截取函数:left(), right(), substring(), substring_index()。还有 mid(), substr()。其中,mid(), substr() 等价于 substring() 函数,substring() 的功能非常强大和灵活。 1. 字符串截 ...
分类:
数据库 时间:
2019-09-24 17:40:05
阅读次数:
67
package team1; import java.util.Scanner; public class Palindrome { static String s; public static char c[]=new char[100]; static int a=s.length();@Sup ...
分类:
编程语言 时间:
2019-09-23 19:46:55
阅读次数:
121
一般用substring函数截取出特定字段,如 --用户姓名第二个字是'大'字的 select * from Users where SUBSTRING(UserName,2,1)='大' 第二种方法就是直接like模糊查询,看具体情况使用 select * from Users where Use ...
分类:
数据库 时间:
2019-09-23 18:15:10
阅读次数:
124
环境配置:PyhtonJavadex2jar(将apk反编译成java源码)jd_gui(源码查看)jadx已root的手机或者安卓模拟器fiddler分析:首先我们用fiddler抓包工具对app的登陆进行抓包,这个app抓包需要开启全局代理,不然会抓不到数据。如果还不会使用全局代理抓包的朋友,可 ...
分类:
移动开发 时间:
2019-09-23 14:57:51
阅读次数:
144
图片转base64字符串网站:http://imgbase64.duoshitong.com/// 前缀,比如data:image/jpeg;base64,String prefix = imgBase64.substring(0, imgBase64.indexOf(",") + 1);// 替换 ...
分类:
Web程序 时间:
2019-09-22 10:27:46
阅读次数:
115
Additive number is a string whose digits can form additive sequence. A valid additive sequence should contain at least three numbers. Except for the f ...
分类:
其他好文 时间:
2019-09-19 14:22:15
阅读次数:
86
题目链接:https://nanti.jisuanke.com/t/41415 赛后补题。 参考博客:https://blog.csdn.net/bjfu170203101/article/details/100889468 题意:给出一个主串(假设长度为m),再给出n个模式串,对于每一个模式串,如 ...
分类:
其他好文 时间:
2019-09-18 01:22:29
阅读次数:
110
1,每个小孩的糖果数量是多少 有p个小孩,c个糖果,刚开始第1个小孩发一个糖果,第2个小孩发两个糖果,第p个小孩发p个糖果,如果糖果没有发完,就接着【注意】第1个小孩发p+1个糖果.....第p个小孩发2*p个糖果,如果糖果还没有发完,就继续下一轮,第1个小孩发2*p+1个糖果,... 方法一,遍历 ...
分类:
编程语言 时间:
2019-09-17 22:14:02
阅读次数:
102