2019年12月31日

android网址收藏

摘要: apk联网升级应用 1.APP升级搭建服务器:https://blog.csdn.net/jjdujiang/article/details/81125783 2.android联网更新应用:https://blog.csdn.net/weixin_34304013/article/details/ 阅读全文

posted @ 2019-12-31 10:37 加油呀 阅读(235) 评论(0) 推荐(0)

2019年12月30日

Android中使用eclipse混淆apk

摘要: 参考:https://www.jianshu.com/p/2d4f62aeea62 1.将project.properties打开,去掉注释# 2.修改proguard-project.txt 详细参见:https://www.jianshu.com/p/2d4f62aeea62 3.导出apk 在 阅读全文

posted @ 2019-12-30 19:59 加油呀 阅读(239) 评论(0) 推荐(0)

2019年12月2日

批处理-if中echo变量

摘要: 批处理中使用if,如果在if中对变量赋值,要等if结束后,变量才能赋值成功 @echo offset testCounts=2set waitTime=5000if 0 equ 0 ( set /p testCounts=请输入测试次数: echo %testCounts% set /p waitT 阅读全文

posted @ 2019-12-02 14:58 加油呀 阅读(924) 评论(0) 推荐(0)

2019年11月16日

shell脚本编写中同样命令直接执行正确,脚本执行报错

摘要: sh test.sh &执行shell脚本,会报一些语法错误,例如:syntax error: unmatched 'while' 但是实际语法并无错误,在脚本外同样的命令是可以正确执行的 这种问题主要是在电脑上编辑shell脚本,默认的换行是Windows(CR LF) 而Linux中的换行是LF 阅读全文

posted @ 2019-11-16 16:46 加油呀 阅读(1508) 评论(0) 推荐(0)

2019年10月28日

Java的静态变量,成员变量,静态代码块,构造块的加载顺序

摘要: 题目: public class StaticTest{ static StaticTest st = new StaticTest(); public static void staticFunction(){ System.out.println("4"); } static{ System.o 阅读全文

posted @ 2019-10-28 19:34 加油呀 阅读(681) 评论(0) 推荐(0)

2019年10月22日

IMEI校验位计算-基于python3

摘要: IMEI是国际移动通讯设备识别号(International Mobile Equipment Identity)的缩写,用于GSM系统。 由15位数字组成,前6位(TAC)是型号核准号码,代表手机类型。接着2位(FAC)是最后装配号,代表产地。后6位(SNR)是串号,代表生产顺序号。最后1位(SP 阅读全文

posted @ 2019-10-22 10:28 加油呀 阅读(1111) 评论(0) 推荐(0)

2019年10月14日

python报错-pandas

摘要: 异常信息: 没有pandas这个模块 cmd执行pip install pandas会自动安装,安装好之后重新打开cmd窗口 如果提示pip非内部或外部命令,在环境变量path中添加C:\Python27\Scripts 阅读全文

posted @ 2019-10-14 19:54 加油呀 阅读(253) 评论(0) 推荐(0)

导航