摘要:
今天导入一个android工程,发现运行之后,报出java.lang.NoClassDefFoundError:org.jsoup.Jsoup异常,百度Google之,发现是jar包有问题,先把jar remover掉,然后保证jar包所在文件夹名为libs,而不是lib。然后再次加载jar,build后,工程正常。 阅读全文
摘要:
今天在Linux服务器上启动apache,结果发现启动不起来,打开log看,如下:[Thu Apr 18 16:55:42 2013] [notice] Digest: generating secret for digest authentication ...[Thu Apr 18 16:55:42 2013] [notice] Digest: done[Thu Apr 18 16:55:43 2013] [warn] pid file /home/xxxx/xxxx/logs/httpd.pid overwritten -- Unclean shutdown of previous Ap 阅读全文
摘要:
invalid project description 阅读全文
摘要:
在tomcat 配置文件context.xml中添加<Loader delegate="true" />即可。 阅读全文
摘要:
http://java.sun.com/products/archive/ 阅读全文
摘要:
修改eclipse.ini文件前面加上两行-vmC:\Program Files\Java\jdk1.6.0_21\bin\javaw.exe 阅读全文
摘要:
我们开发android app的时候,run 在模拟器上,控制台报出:Failed to install .apk on device 'emulator-5554': timeout的错误,解决方法如下:我们打开试图:window->preferences->Android->DDMS如下图,修改红色标注的地方,把原来的值5000改为50000. 阅读全文
摘要:
很简单,写个Receiver类并继承BroadcastReceiver然后在onReceive方法做你想做的事情,启动activity或者service都可以。最后在AndroidManifest.xml中注册一个关键的Receiver配置<receiver android:name=".XXXXXXReceiver"> <intent-filter> <action android:name="android.intent.action.BOOT_COMPLETED"/> </intent-filter> 阅读全文
摘要:
出现这个错误,肯定是使用eclipse import导入别的项目,解决这个问题就是纠正下如何导入别人的项目或者其他环境下的项目在eclipse 选择新建android工程,选择“create project from existing source”即可。 阅读全文
摘要:
[2011-12-14 11:08:47 - imusic] Uploading imusic.apk onto device 'emulator-5554'[2011-12-14 11:09:39 - imusic] Installing imusic.apk...[2011-12-14 11:10:00 - imusic] Installation error: INSTALL_FAILED_INSUFFICIENT_STORAGE[2011-12-14 11:10:00 - imusic] Please check logcat output for more detai 阅读全文