数组字符串 数组操作 基本操作方法(4个) push() 向数组末尾添加元素 参数:要向数组末尾添加的元素,个数不限 返回值:数组长度 pop() 从数组末尾删除一个元素 返回值:删除的元素值 shift() 从数组前面删除一个元素 返回值:删除的元素值 unshift() 向数组前面添加元素 参数 ...
分类:
编程语言 时间:
2019-09-27 21:10:40
阅读次数:
108
原文链接:https://www.cnblogs.com/icycore/p/10493237.html 有的时候,需要知道近段时间SQLSERVER执行了什么语句,可以用下面的方法: ...
分类:
数据库 时间:
2019-09-27 15:20:00
阅读次数:
176
参考(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