mcryptis a file encryption method using secure techniques to exchange data. It is required for some web apps for exampleMagento, the shopping cart sof...
分类:
Web程序 时间:
2014-11-12 02:05:33
阅读次数:
268
转:在线安装maven插件问题:Cannot complete the install because one or more required items could not be found.使用Eclipse在线安装的方式:Help-->Install New Software地址输入:htt...
分类:
系统相关 时间:
2014-11-11 21:03:16
阅读次数:
264
环境:CentOS5.8,安装了Asterisk 1.8升级php到5.2SugarCRM 6.5: Minimum PHP version required is 5.2.0. You are using PHP version 5.1.6官方的yum源里面没有,如下添加一个额外的源:# rpm ...
分类:
其他好文 时间:
2014-11-11 18:11:46
阅读次数:
369
The type java.lang.Object cannot be resolved. It is indirectly referenced from
required .class files
当你在Eclipse引用不同版本JDK工程时会发生该问题。由于你开发环境中应用了多个版本的JDK 或JRE导致的。Eclipse会按照最初的开发环境默认选择对应的Jre。如Eclipse上...
分类:
编程语言 时间:
2014-11-11 12:47:52
阅读次数:
165
之所以要导出Runnable JAR,是因为我们希望将引用到的Jar包与本项目一起进行导出,所以不要选Jar file
选File/Export...然后Java/Runnable JAR file,然后选要执行的有main()的类,选extract required libraries into generated JAR。
为什么export-->runnable jar file...
分类:
编程语言 时间:
2014-11-10 19:59:22
阅读次数:
261
删除文件夹后点commit提交,但是报错,报错内容如下:
提示 "svn: Commit failed
(details follow): svn: '/***/xxx.c' is scheduled for addition, but is missing "
原因:之前用SVN提交过的文件,被标记为"add"状态,等待被加入到仓库。若此时你把这个文件删除了,SVN提...
分类:
其他好文 时间:
2014-11-10 15:30:39
阅读次数:
292
怎样修复“Windows/System32/Config/System中文件丢失或损坏”故障英文原文引自 http://xphelpandsupport.mvps.org/how_do_i_repair_a_missing_or_cor1.htm此类错误通常说明计算机由于注冊表的原因不能启动,下列操...
Given two words word1 and word2, find the minimum number of steps required to convert word1 to word2. (each operation is counted
as 1 step.)
You have the following 3 operations permitted on a word:...
分类:
其他好文 时间:
2014-11-08 23:42:09
阅读次数:
422
安装coreseek 出现了cannot find input file: src/Makefile.in解决方法如下>autoheader>automake --add-missing --copy >autoconf然后再执行./configure --prefix=/usr/local/mms...
分类:
其他好文 时间:
2014-11-08 16:24:11
阅读次数:
161
数组a中含有N个元素,其元素属于[0,N]之间,且不存在重复的元素,请你找出数组中缺失的元素(因为[0,N]之间有N+1个元素,而数组只能存储N个元素,所以必然缺少一个元素)。其中对数组的操作满足下列的条件:不能在常数时间内读取数组中的元素,但是可以读取数组中元素的某一个bit值,能够在常数时间内交换数组的两个元素的位置。请设计一种算法使其能够在线性时间内找出数组中缺失的元素。(N=2^k)
A...
分类:
编程语言 时间:
2014-11-08 15:16:47
阅读次数:
250