11 2020 档案

摘要:function printClass(c){ var str = " \n"; str += "|" + JSON.stringify(c) + "\n"; var fields = c.getClass().getFields(); for(var index in fields){ var f 阅读全文
posted @ 2020-11-30 18:32 公众号python学习开发 阅读(1339) 评论(0) 推荐(0)
摘要:package main import "fmt" //notifier是一个定义了 通知类行为的接口 type notifier interface { notify() } //user 在程序里定义一个用户类型 type user struct { name string email stri 阅读全文
posted @ 2020-11-30 18:07 公众号python学习开发 阅读(117) 评论(0) 推荐(0)
摘要:方法集定义了一组关联到指定类型的值或者指针的方法。 定义方法时使用的接收者类型决定了这个方法是关联到值还是关联到指针还是两者都关联 规范里描述的方法集 |values(值) | methods receivers(方法接收者类型)| |--|--| |T|(t T)| |*T|(t T)和(*t T 阅读全文
posted @ 2020-11-30 16:21 公众号python学习开发 阅读(162) 评论(0) 推荐(0)
摘要:<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:sc 阅读全文
posted @ 2020-11-19 15:59 公众号python学习开发 阅读(419) 评论(0) 推荐(0)
摘要:1.maven使用本地jar 在当前的工程创建一个lib文件夹,然后把jar文件扔进去。 修改pom.xml <dependency> <groupId>unidbg-api</groupId> <artifactId>unidbg-api</artifactId> <version>0.9</ve 阅读全文
posted @ 2020-11-19 12:43 公众号python学习开发 阅读(920) 评论(0) 推荐(0)
该文被密码保护。
posted @ 2020-11-18 10:48 公众号python学习开发 阅读(3) 评论(0) 推荐(0)
摘要:添加SpringBoot自带的打包方式,<finalName>标签是指定打包之后的名称,<mainClass>是指定main函数。 <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4 阅读全文
posted @ 2020-11-11 18:24 公众号python学习开发 阅读(855) 评论(0) 推荐(0)
摘要:下载 wget https://repo.huaweicloud.com/java/jdk/8u201-b09/jdk-8u201-linux-x64.tar.gz 解压 tar -zxvf jdk-8u201-linux-x64.tar.gz 移动文件 mv jdk1.8.0_201 /usr/l 阅读全文
posted @ 2020-11-10 15:34 公众号python学习开发 阅读(145) 评论(0) 推荐(0)
摘要:https://www.jb51.net/article/185692.htm 阅读全文
posted @ 2020-11-05 15:32 公众号python学习开发 阅读(101) 评论(0) 推荐(0)
摘要:强烈推荐龙哥的unidbg学习交流星球,更新频率高。 package com.cxa; import com.github.unidbg.Module; import com.github.unidbg.arm.ARMEmulator; import com.github.unidbg.linux. 阅读全文
posted @ 2020-11-04 17:04 公众号python学习开发 阅读(1725) 评论(0) 推荐(0)
摘要:[app] # (str) Title of your application title = My Camera # (str) Package name package.name = myapp # (str) Package domain (needed for android/ios pac 阅读全文
posted @ 2020-11-03 23:21 公众号python学习开发 阅读(765) 评论(0) 推荐(0)
摘要:mac安装依赖 brew install automake brew install autoconf brew install libtool 安装sdk环境 最好安装个android studio,然后打开sdk配置下载Android 27 SDK 创建虚拟环境virtualenv 安装pyth 阅读全文
posted @ 2020-11-03 21:39 公众号python学习开发 阅读(944) 评论(0) 推荐(0)
摘要:from kivy.app import App from kivy.uix.boxlayout import BoxLayout from kivy.uix.button import Button from kivy.uix.label import Label from kivy.uix.te 阅读全文
posted @ 2020-11-03 16:04 公众号python学习开发 阅读(741) 评论(0) 推荐(0)
摘要:requests.post('https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=你的机器人的key', headers={'Content-Type': 'application/json'},data=json.dumps({'msgtype 阅读全文
posted @ 2020-11-03 15:39 公众号python学习开发 阅读(614) 评论(0) 推荐(0)
摘要:首先创建的工程的时候 使用pycharm就没事,也就是推荐python环境是virtualenv 缺少依赖,安装依赖就好了 brew install cmake brew install automake brew install autoconf brew install libtool 再次运行 阅读全文
posted @ 2020-11-03 11:07 公众号python学习开发 阅读(327) 评论(0) 推荐(0)
摘要:from kivy.app import App from kivy.uix.button import Button from kivy.uix.boxlayout import BoxLayout from kivy.uix.label import Label from kivy.uix.te 阅读全文
posted @ 2020-11-03 02:18 公众号python学习开发 阅读(282) 评论(0) 推荐(0)
摘要:var current_application = Java.use('android.app.ActivityThread').currentApplication(); var context = current_application.getApplicationContext(); Andr 阅读全文
posted @ 2020-11-02 21:35 公众号python学习开发 阅读(3850) 评论(0) 推荐(0)