解决办法 在terminal中重启下server D:\Android_projects>adb kill-server D:\Android_projects>adb start-server ...
分类:
移动开发 时间:
2020-12-31 11:51:22
阅读次数:
0
实验七 文件(Last one) p.s最后一个实验居然是最坎坷的一个实验,怎么说呢,用的MacOS,一直在担心文件操作不能做,刚做的时候不断报错,上网查了半天,打开了路径开关,变成fail to find。心如死灰,选择到机房在Windows系统下做实验,结果结果,不知道是不习惯系统还是操作的问题 ...
分类:
其他好文 时间:
2020-12-30 11:10:04
阅读次数:
0
Springboot项目启动,IDE的控制台报错信息: Unable to infer base url. This is common when using dynamic servlet registration or when the API is behind an API Gateway. ...
分类:
编程语言 时间:
2020-12-30 10:25:19
阅读次数:
0
递归实现 template<typename T> int binary_search(T arr[], int len, int left, int right, int find) { // 必要参数检查 if (NULL == arr || nullptr == arr || 0 > left ...
分类:
编程语言 时间:
2020-12-29 11:31:49
阅读次数:
0
package LeetCode_562 /** * 562. Longest Line of Consecutive One in Matrix * (Prime) *Given a 01 matrix M, find the longest line of consecutive one in ...
分类:
其他好文 时间:
2020-12-28 11:58:19
阅读次数:
0
有关FiddlerEverywhere通过邮件激活账号时,激活链接提示已失效问题;这个链接有进行一个讨论(https://www.telerik.com/forums/unable-to-activate-fiddler-everywhere-account) ,不过最终的解决方案就是 你注册的Fi ...
分类:
其他好文 时间:
2020-12-28 11:29:40
阅读次数:
0
从 GitHub 克隆一个项目下发出现了错误: error: unable to create file spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/src/test/resources/org/springfram ...
B - Lucky Mask Petya loves lucky numbers very much. Everybody knows that lucky numbers are positive integers whose decimal record contains only the lu ...
分类:
其他好文 时间:
2020-12-25 12:22:13
阅读次数:
0
stl常用容器-string C++标准库定义了一种string类,定义在头文件<string> string封装了很多使用的办法: 查找find,拷贝copy,删除delete,替换replace,插入insert 不用考虑内存释放和越界,string管理char*分配的内存,每一次的string ...
分类:
其他好文 时间:
2020-12-25 12:10:04
阅读次数:
0
服务器上的一些统计数据: 1)统计80端口连接数 netstat -nat|grep -i “80”|wc -l 2)统计httpd协议连接数 ps -ef|grep httpd|wc -l 3)、统计已连接上的,状态为“established netstat -na|grep ESTABLISHE ...
分类:
Web程序 时间:
2020-12-25 11:50:10
阅读次数:
0