
陈年高
Occupation: 程序员
Location: 重庆
His ProfilesRankThis is the rank of '陈年高' out of all Google+ Profiles.: 38,773 (GenderRankFor the gender 'Men'.: 24,232)
His ProfilesRankThis is the rank of '陈年高' out of all Google+ Profiles. in China: 1,001 (GenderRankFor the gender 'Men'.: 747)
His CircleRankThis is the rank of '陈年高' out of all indexed profiles and pages at CircleCount.com.: 46,604
Followers: 2,309
Following: 2
Added to CircleCount.com: 07/08/2011That's the date, where 陈年高 has been indexed by CircleCount.com.
This hasn't to be the date where the daily check has been started. (Update nowYou can update your stats by clicking on this link!
This can take a few seconds.)
Latest postings
2012-04-05 06:35:19 (0 comments, 0 reshares, 0 +1s)
eclipse ADT 17第三方jar的BUG
作者: Min 日期: 2012年4月2日 发表评论 (1)查看评论
关键字:android eclipse adt17 jar NoClassDefFoundError
在ADT升级到17后发现了些问题,因为之前的版本没有出现过,所以这个问题应该算是17这个版本的BUG吧。但前使用的版本如下图:
出现的问题是在将项目打包成apk时,第三方的jar,也就是添加的类库无法加入到apk中,结果自然是在运行的时候类加载器无法load到class,爆出java.lang.NoClassDefFoundError。如下图所示:
既然只道了问题所在解决起来也就容易许多。如下图所示:
首先是类库,在当前项目的Build path->Configure Build path …进入到当前界面,在Libraies选项卡中设置运行和编译时用到的jar和库文件,当然这是遵循Java项目的标准规范的,和android没有什么关系。所以这里的jar按照标准自然是在Add JARs… 中选择项目相对路径的jar,主要是便于维护。
之后切换到Order and Export选项卡,选择需要导出的库,首选源代码自然不需要关心,android的库是在android设备中,自然不需要加入,然后选择我们额外加入的xxx.jar,如上图所示。然后清除项目下bin目录中已经编译好的apk,重现编译发布即可。... more »

2011-07-27 08:57:16 (0 comments, 0 reshares, 0 +1s)
http://static.sc.hiapk.com/html/2011/07/174106.html

2011-07-06 13:21:07 (0 comments, 0 reshares, 0 +1s)
解决“[warn] (OS 64)指定的网络名不再可用”错误合集
2009-09-01 14:04
都是转的:
其一:
近来点击玩聚热点故事,偶尔遇到500错误,看了看Apache2.2.3日志(Windows2003下的),注意到如下错误丫的总出现:
[warn] (OS 64)指定的网络名不再可用。 : winnt_accept: Asynchronous AcceptEx failed.
以前也看到,但忽略了。这回不能再放过她了。
看了几篇(winnt(MPM) - Apache 2.2 中文版参考手册),说是因为一些流行的Windows产品,比如防病毒软件或虚拟专用网络软件,会干扰AcceptEx()的正确操作。于是在apache配置文件中添加如下语句:
<IfModule mpm_winnt.c>
ThreadsPerChild 1000
MaxRequestsPerChild 10000
Win32DisableAcceptEx
</IfModule>
停止Apache,再启动。确实新配置起作用了:


