网上能搜到的各种办法都试过了, 没一个可行:1、大部份是用来解决usb不识别的,也就是adb
devices不显示。但现在是有显示,只是unauthorized2、我习惯用tcp连接,少根线,多台手机联调时操作方便,所以跟usb识不识别无关。3、有些过时的帖子说adb不是最新,更新到最新就好了。我的...
分类:
数据库 时间:
2014-04-29 19:46:35
阅读次数:
2452
1.nginx配置网站目录并修改访问的端口:nginx.conf文件listen
666;//端口默认为80,修改后增强安全性 server_name www.lnmp.org; index index.html index.htm
ind...
分类:
其他好文 时间:
2014-04-29 19:29:01
阅读次数:
450
简单记录:模糊查询的select语句的拼写 public List
GetWhereStudent(string name, string sub, string isG) { List lt = new List();
str...
分类:
Web程序 时间:
2014-04-29 17:17:34
阅读次数:
864
C:快速求N以内因数和,N以内互质数的和。容斥版: 1 #include 2 #include 3
#include 4 #define maxn 1100000 5 #define LL long long 6 //N以内gcd(i,N)==1的i的和 7
using name...
分类:
其他好文 时间:
2014-04-29 17:08:17
阅读次数:
470
实用正则org.springframework.aop.support.RegexpMethodPointcutAdvisor然后 .*_cache.*
表示拦截...
分类:
编程语言 时间:
2014-04-29 16:25:10
阅读次数:
510
cd ~/.ssh/如果目录不存在就新建一个 mkdir ~/.ssh制作公匙
ssh-keygen -t rsa默认会生成id_rsa.pub的公匙将公匙推送到指定的服务器 scp id_rsa.pub
username@server:~/.ssh/id_rsa.pub登录到服务器 ssh use...
分类:
系统相关 时间:
2014-04-29 16:01:32
阅读次数:
625
#include#includeusing namespace std;void
printMonth(int year, int month);void printMonthTitle(int year, int month);void
printMonthName(int month);void...
分类:
其他好文 时间:
2014-04-29 15:36:57
阅读次数:
405
要写的内容代码,比如说Html可以在html中添加数据提交到数据库中,前提要和数据库中名字信息一致表单提交: .......
这是一部分提交表单中的数据的代码,其中包含有链接到数据库的 添加信息 "; echo "姓名:".$name."";...
分类:
数据库 时间:
2014-04-29 15:35:54
阅读次数:
582
1、用户自定义的类加载器:要创建用户自己的类加载器,只需要扩展java.lang.ClassLoader类,然后覆盖它的findClass(String
name)方法即可,该方法根据参数指定类的名字,返回对应的Class对象的引用。findClassprotected Class findClas...
分类:
编程语言 时间:
2014-04-29 09:22:45
阅读次数:
546