上一页 1 ··· 7 8 9 10 11 12 13 下一页
摘要: cd /usr/local/src //进入src目录 wget http://download.redis.io/releases/redis-4.0.1.tar.gz //下载到src tar zxvf redis-4.0.1.tar.gz //解压 cd redis-4.0.1 make && 阅读全文
posted @ 2018-11-19 16:51 lancelee98 阅读(109) 评论(0) 推荐(0) 编辑
摘要: #include<string> #include<iostream> #include<process.h> #include<windows.h> #include <stdlib.h> #include<time.h> #include<list> using namespace std; H 阅读全文
posted @ 2018-11-06 21:28 lancelee98 阅读(2891) 评论(0) 推荐(0) 编辑
摘要: 一、导航 以guns的通知管理为例 l 通知管理的请求地址是localhost:8080/notice l 程序收到这样的请求就去找地址为notice的Controller l 通知控制器收到这个请求时因为下一级地址为空,所以执行这个函数 l 通过这个函数找到这个网页 二、网页中的表格获得数据 l 阅读全文
posted @ 2018-11-04 12:42 lancelee98 阅读(3924) 评论(0) 推荐(0) 编辑
摘要: 首先在test文件夹里面删除红框里面的两个文件 然后再在需要测试的类里面右键类名生成测试文件 生成的测试文件加上这两句话 @RunWith(SpringJUnit4ClassRunner.class) @SpringBootTest(classes= GunsApplication.class) 然 阅读全文
posted @ 2018-10-30 20:15 lancelee98 阅读(481) 评论(0) 推荐(0) 编辑
摘要: 原查询 select sum(case when age16 and age25 and age35 and age45 and age55 and age65 and age75 then 1 else 0 end ) age8, count(id) other from snap_face 经检 阅读全文
posted @ 2018-10-30 19:56 lancelee98 阅读(1136) 评论(0) 推荐(0) 编辑
摘要: 如图所示 饼图数据为0但是还是会显示lableline和lable ##解决方法 ###var echartData = [{ value: data_arry[0]==0?null:data_arry[0], name: '常驻人口' }] 传数据时判断数据是否为0,如果为0的话 就填入null 阅读全文
posted @ 2018-10-21 14:31 lancelee98 阅读(23283) 评论(0) 推荐(5) 编辑
摘要: 错误报告java.lang.NoClassDefFoundError:Failed resolution of: Lorg/ietf/jgss/Oid; 问题是由于 Lorg.ietf. jgss.Oid 没有找到与 gss api一起使用的,可以通过使用密码身份验证来避免这一点。 解决方案 :在s 阅读全文
posted @ 2018-09-28 20:30 lancelee98 阅读(690) 评论(0) 推荐(0) 编辑
摘要: permissions is only granted to system apps androidstudio中: File Setting Editor Inspections, Android Lint Correctness 下的 Using system app permission , 阅读全文
posted @ 2018-09-08 21:00 lancelee98 阅读(261) 评论(0) 推荐(0) 编辑
摘要: values v19/style.xml ` <item name="android:windowTranslucentStatus" true</item <item name="android:windowTranslucentNavigation" true</item ` values v2 阅读全文
posted @ 2018-08-20 12:52 lancelee98 阅读(1395) 评论(0) 推荐(0) 编辑
摘要: 导入support v4 1.进入 file project structure 2.左边选择app 3.右边选择dependencies 4.左下角可以看到一个加号,点击选择Library dependency就可以看到可以导入的jar包,选择support v4导入即可 简单通知 通知管理工具 阅读全文
posted @ 2018-08-16 13:30 lancelee98 阅读(916) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 下一页