真机调试过程中弹出这个问题,网上找到的解决的方法,记录一下。。。。。弄完这些步骤之后,上面多出一个 IOS disturbution。所以出现这个问题的解决办法应该是设置的证书没有刷新到本地所致。
分类:
其他好文 时间:
2015-02-12 15:48:26
阅读次数:
186
部署Hive后启动HiveServer2居然抛出了以下的异常:反复检查了配置文件,配置都是正确,就是启动失败,实在没有办法只能根据错误信息排查。* 找到HiveConf.java-->unitFor(String unit, TimeUnit defaultUnit)方法,通过代码可以看出是因为un...
分类:
编程语言 时间:
2015-02-12 15:31:51
阅读次数:
293
题目:Search Insert Position通过率:35.3%难度:中等Given a sorted array and a target value, return the index if the target is found. If not, return the index wher...
分类:
其他好文 时间:
2015-02-12 12:13:14
阅读次数:
111
Time Limit:1000MS Memory Limit:32768KB 64bit IO Format:%I64d & %I64uDescription The digital root of a positive integer is found by summing the digits....
分类:
其他好文 时间:
2015-02-12 12:02:51
阅读次数:
82
用户在网站上下载一个RAR压缩包时,崩开这个错误。
解决方法一:打开网站的 web.config 文件,修改如下节点值
allowDoubleEscaping="True"/>
解决方法二:文件窗口中 键入 %windir%\system32\inetsrv\config\applicationhost.config,打开系统配置文件
修改 节点如下
...
分类:
Web程序 时间:
2015-02-12 09:18:25
阅读次数:
1554
如果在原先jwplayer播放器的位置上,看到了Could not load plugins: File not found这句话,并且打开调试工具,看到GET Aborted p.jwpcdn.com那么和我遇到的是相同的问题,再查找解决办法过程中,看到了以下的文字,对于遇到相同问题的...
分类:
其他好文 时间:
2015-02-12 07:03:53
阅读次数:
832
reference from:http://docs.jboss.org/netty/3.1/guide/html/architecture.html2.1. Rich Buffer Data Structure2.2. Universal Asynchronous I/O API2.3. Even...
分类:
Web程序 时间:
2015-02-11 23:13:19
阅读次数:
353
本文是在学习中的总结,欢迎转载但请注明出处:http://blog.csdn.net/pistolove/article/details/43739647
Given a sorted array and a target value, return the index if the target is found. If not, return the index where it would be if it were inserted in order.
You...
分类:
其他好文 时间:
2015-02-11 22:01:19
阅读次数:
193
1、错误描述
java.sql.SQLException:No suitable driver found for http://localhost:3306/school
2、错误原因
Class.forName("com.mysql.jdbc.Driver");
Connection conn = null;
Statement stat = null;
ResultSet ...
分类:
数据库 时间:
2015-02-11 21:58:19
阅读次数:
237
1、错误描述
java.sql.SQLException:Invalid value for getInt()-'zhangsan'
2、错误原因
在遍历打印查询结果时,rs.getInt(3),而在数据库中对应的该字段却是varchar类型,Java端和数据库表中的数据类型不一致,导致出错
3、解决办法
将“rs.getInt(3)”修改成“ rs....
分类:
数据库 时间:
2015-02-11 21:58:00
阅读次数:
155