首页 > 其他
开发问题日记
1.interface org.springframework.aop.SpringProxy is not visible from class loader 解决方法:引入spring  aop的包 2.运行平台的MainApplication报了这样的错误:签名信息不匹配 Caused by: java.lang.IllegalArgumentException: protocol =...
分类:其他   时间:2015-05-28 10:54:53    收藏:0  评论:0  赞:0  阅读:299
hdu3966 树链剖分(区间更新和单点求值)
http://acm.hdu.edu.cn/showproblem.php?pid=3966 Problem Description Our protagonist is the handsome human prince Aragorn comes from The Lord of the Rings. One day Aragorn finds a lot of enemies...
分类:其他   时间:2015-05-28 10:54:23    收藏:0  评论:0  赞:0  阅读:156
Visual Studio 编译libimobiledevice问题简介
error LNK2001: unresolved external symbol __imp__plist_array_get_item 这种错误需要在目标项目上添加 Reference. Release版本需要把所有类库: Configuration Properties->C/C++->Code Generation->Runtime Library修改为MT(静态链接库) 多类库相互依赖,...
分类:其他   时间:2015-05-28 10:53:33    收藏:0  评论:0  赞:0  阅读:534
HDU 5199
Gunner Time Limit: 8000/4000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others) Total Submission(s): 1323    Accepted Submission(s): 586 Problem Description Long long ago, there...
分类:其他   时间:2015-05-28 10:52:13    收藏:0  评论:0  赞:0  阅读:156
解决方案、项目、程序集、命名空间区别
.Net的基本概念还是要分清楚的。...
分类:其他   时间:2015-05-28 10:51:58    收藏:0  评论:0  赞:0  阅读:250
slimscroll滚动条插件简单用法
1、倒入HTML代码:要显示的html内容。。。 JS代码:
分类:其他   时间:2015-05-28 10:49:23    收藏:0  评论:0  赞:0  阅读:1423
ZOJ 3598 Spherical Triangle球面几何公式应用
#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #inclu...
分类:其他   时间:2015-05-28 10:49:13    收藏:0  评论:0  赞:0  阅读:305
表单验证 不能为负值或者字母
1 function num (event,obj) { 2 $(document).on(event,obj,function(event){ 3 event.stopPropagation(); 4 var _this = ...
分类:其他   时间:2015-05-28 10:48:23    收藏:0  评论:0  赞:0  阅读:178
【hbase】——bulk load导入数据时value=\x00\x00\x00\x01问题解析
一、存入数据类型Hbase里面,rowkey是按照字典序进行排序。存储的value值,当用filter进行数据筛选的时候,所用的比较算法也是字典序的。1、当存储的value值是float类型的时候,录入数据可以录入,但是读取出来的数据会存在问题会出问题例如:存入数据的代码:p = new Put(B...
分类:其他   时间:2015-05-28 10:48:03    收藏:0  评论:0  赞:0  阅读:359
Dojo - 操作Dom的函数
DOM ManipulationYou might be seeing a trend here if you have gotten this far in the tutorial, in that not only has Dojo abandoned its dependency on th...
分类:其他   时间:2015-05-28 10:47:53    收藏:0  评论:0  赞:0  阅读:271
键盘事件
浏览器有3个传统的键盘输入事件。keydown和keyup事件是低级事件,不过,keypress事件是叫高级的事件,它产生了一个可打印字符,下面我主要介绍keydown和keyup事件。当用户在键盘上按下或释放按键时,会发生keydown和keyup事件。它们由辅助键、功能键和字母数字键产生。如果用...
分类:其他   时间:2015-05-28 10:47:43    收藏:0  评论:0  赞:0  阅读:171
tomcat出现的PermGen Space问题
转载地址http://www.blogjava.net/allen-zhe/archive/2007/12/18/168556.htmlTomcat给我的java.lang.OutOfMemoryError: PermGen今天,Tomcat给了我这么一个异常:java.lang.OutOfMemo...
分类:其他   时间:2015-05-28 10:46:53    收藏:0  评论:0  赞:0  阅读:97
条款3:尽可能地使用const
如下为const修饰的几种类型:char name[] = "benxintuzi";char* p1 = name; // non-const pointer, non-const dataconst char* p2 = name; // non-const pointer, const dat...
分类:其他   时间:2015-05-28 10:46:33    收藏:0  评论:0  赞:0  阅读:152
仿JQ插件
012345js原生可以用http://www.oschina.net/question/54100_25614
分类:其他   时间:2015-05-28 10:46:23    收藏:0  评论:0  赞:0  阅读:147
RMAN冷备份、一致性备份脚本
RMAN冷备份、一致性备份脚本 run{shutdown immediate; startup mount;allocate channel c1 type disk;allocate channel c2 type disk;backup database format '/home/oracle...
分类:其他   时间:2015-05-28 10:46:03    收藏:0  评论:0  赞:0  阅读:292
一个字符串的哈希函数
一个哈希函数的实现以及分析...
分类:其他   时间:2015-05-28 09:43:54    收藏:0  评论:0  赞:0  阅读:228
HDU - 2842 Chinese Rings 矩阵快速幂
题目大意:有n个环,刚开始都是on状态,可以随便改第一个的状态,其他的话,只有前面的k个off掉,第k+1个on,才可以操控第k+2个的状态 问要让n个都变成off状态,需要多少步解题思路:要让第n个是off,只有先让前n-2个都off,也就是说需要f(n-2)步了。然后再把第n个变成off,需要1步。 之后要把剩下的n-1个都off掉的话,只有先把前面的n-2个都变成on,才能去操控第n-1个...
分类:其他   时间:2015-05-28 09:43:33    收藏:0  评论:0  赞:0  阅读:228
[libev]error while loading shared libraries: libev.so.4
用./configure、make、make install安装完libev后,写一个简单程序server.c,编译,gcc server.c -o server lev。 产生如下错误:error while loading shared libraries: libev.so.4: cannot open shared object file: No such file or directo...
分类:其他   时间:2015-05-28 09:43:23    收藏:0  评论:0  赞:0  阅读:358
HDU4604.Deque——nlogn求最长上升子序列的长度
http://acm.hdu.edu.cn/showproblem.php?pid=4604把一个序列中的元素放到队列里面,有3种操作,对于第i个元素 1.放到队头2.放到队尾3.舍弃 求最长上升序列的长度法1:求出每个以a[i]为起点的最长不升子序列的长度,和最长不降子序列的长度,两个相加再减去a[i]重复的次数法2:把当前序列复制两个,一个逆序,求总共的最长上升子序列的长度,然后奇偶避免重复...
分类:其他   时间:2015-05-28 09:43:13    收藏:0  评论:0  赞:0  阅读:174
Installation error: INSTALL_FAILED_VERSION_DOWNGRADE
出现这个问题的原因是manifest.xml文件没有指定versioncode: 解决方法:          package="com.park"     android:versionCode="1" > 这样的话指定了,versioncode问题解决。...
分类:其他   时间:2015-05-28 09:43:03    收藏:0  评论:0  赞:0  阅读:336
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!