准备2张图片用于替换选中和未选中时的样式 drawable下准备两个对应的layer-list btn_radio_on.xml <layer-list xmlns:android="http://schemas.android.com/apk/res/android"> <item android ...
分类:
移动开发 时间:
2021-02-22 12:40:31
阅读次数:
0
OSI 7层 vs TCP/IP 4~5 层模型介绍 OSI 7层模型 (Open System Interconnection) OSI是Open System Interconnection的缩写,意为开放式系统互联。国际标准化组织(ISO)制定了OSI模型,该模型定义了不同计算机互联的标准,是 ...
分类:
其他好文 时间:
2021-02-22 12:30:52
阅读次数:
0
跨域常见问题: 1.发布到IIS上后跨域问题 解决方法 修改web.config文件 <system.webServer> <httpProtocol> <customHeaders> <add name="Access-Control-Allow-Methods" value="GET,POST, ...
分类:
Web程序 时间:
2021-02-22 12:27:38
阅读次数:
0
在hive客户端建一张表比如bb 条件bb与abc表结构相同,abc有数据,把abc的数据导到bb里 hive -e是为了解决每次进入客户端的麻烦操作,使用了hive -e命令,可以在hive客户端外对客户端进行操作, 例如 hive -e "use aaa;select * from abc li ...
分类:
其他好文 时间:
2021-02-22 12:21:51
阅读次数:
0
OS模块 属于python中的内置模块,专门用来处理系统相关的操作 使用方法:直接使用导入使用 import OS 具体的使用方法如下: 1.文件路径的获取: py文件的地址 具体的实现过程: import os #获取当前文件的绝对路径 file_path=os.path.abspath(__fi ...
分类:
编程语言 时间:
2021-02-22 12:04:44
阅读次数:
0
为了方便理解,我们先看一段代码: int a = 3; System.out.println(a); // 3 int b = a++; //运行顺序是先赋值,再自增 System.out.println(a); //a = a+1; 4 System.out.println(b); //b = a ...
分类:
编程语言 时间:
2021-02-22 12:01:13
阅读次数:
0
d87 x65 x6c x63 o157 d109 o145 b100000 d116 b1101111 o40 x6b b1100101 b1101100 o141 d105 x62 d101 b1101001 d46 o40 d71 x69 d118 x65 x20 b1111001 o157 ...
分类:
其他好文 时间:
2021-02-22 11:59:30
阅读次数:
0
告诉你shell是什么,就是这个system("/bin/sh") 这题直接白给了,nc一下就能ls看到flag ...
分类:
系统相关 时间:
2021-02-22 11:55:43
阅读次数:
0
git tag -a "obj-v1.1.4" -m "rows read" git push --follow-tags 未执行 git add 操作 git restore file_name、git checkout -- file_name 或者 git reset --hard HEAD ...
分类:
其他好文 时间:
2021-02-22 11:46:41
阅读次数:
0
using System; using System.Collections.Generic; using System.Linq; namespace ConsoleApp1 { class Program { static void Main(string[] args) { /* 贪心算法(集 ...
分类:
编程语言 时间:
2021-02-20 12:42:12
阅读次数:
0