我是myeclipse5.5 的IDE工具。为了能反编译class文件,上网搜索了很多资料,终于找到一下的一段资料: 1.将jad.exe 复制到myeclipse安装目录的jre/bin目录下,如:C:/Program Files/MyEclipse 5.5.1 GA/jre/bin/jad.ex...
分类:
系统相关 时间:
2014-07-23 22:23:47
阅读次数:
387
第一次从外部文件导入HelloWorld工程到workspace目录中,成功。删除后,再次从外部导入workspace目录提示Some projects cannot be imported because they already exist in the workspaceeclipse中删除H...
分类:
系统相关 时间:
2014-07-23 20:40:15
阅读次数:
252
07-23 18:16:17.641: W/SQLiteConnectionPool(28390): A SQLiteConnection object for database '/storage/emulated/0/cnOA.db' was leaked! Pl...
分类:
移动开发 时间:
2014-07-23 20:36:55
阅读次数:
246
七月 23, 2014 2:34:35 下午 org.apache.catalina.loader.WebappClassLoader loadClass信息: Illegal access: this web application instance has been stopped alread...
分类:
移动开发 时间:
2014-07-23 15:17:46
阅读次数:
277
遇到android项目导入出现后重复空包等错误,往往是导入的java编译级别有关,点击项目properties->java Compiler ->修改Compiler compliance level 一般是1.6。修改完成clean项目之后,往往还会遇到:gen already exists bu...
分类:
其他好文 时间:
2014-07-23 14:47:56
阅读次数:
244
warn:Skipping MapperFactoryBean with name ‘appOperateRecordMapper‘ and ‘XX.XX.XX.daor‘ mapperInterface. Bean already defined with the same name! 2014-07-22 18:02:29? WARN [main] (ClassPathMapperSc...
分类:
编程语言 时间:
2014-07-23 00:35:38
阅读次数:
315
今天更新Android4.4W 版本SDK,更新完后顺便更新ADT,结果更新后报错,导致SDK不能用.出现类似以下的报错:
Android Native Development Tools is already installed, so an update will be performed instead.
Cannot complete the install because one...
分类:
移动开发 时间:
2014-07-23 00:07:17
阅读次数:
348
1 #include 2 #include 3 using namespace std; 4 #define LL long long 5 LL a,b,m,n,d; 6 void ex_gcd(LL a,LL b,LL &x,LL &y,LL &d) 7 { 8 if(b==0){ 9...
分类:
其他好文 时间:
2014-07-22 23:34:07
阅读次数:
358
14/07/21 17:49:59 ERROR security.UserGroupInformation: PriviledgedActionException as:chenlongquan cause:org.apache.hadoop.mapred.FileAlreadyExistsException: Output directory hdfs://ubuntu:9000/output0...
分类:
其他好文 时间:
2014-07-22 14:38:19
阅读次数:
179
LOCK_EX是表示排它锁(Exclude),是独占的,一般用于写操作,而如果换成LOCK_SH(Share)则是共享,多用于读取。有时为了保证多进程对文件的读写都是唯一的,无论读写都进行LOCK_EX的请求。 以下是一段演示程序,...
分类:
其他好文 时间:
2014-07-21 23:31:03
阅读次数:
238