程序员人生 网站导航

NoClassDefFoundError: org.apache.http.entity.mime.content.StringBody

栏目:互联网时间:2014-10-02 08:00:01

1.出错代码:StringBody strbType = new StringBody("123" , Charset.forName("UTF-8"));

2.问题描述:编译期间没问题,运行后报异常“NoClassDefFoundError: org.apache.http.entity.mime.content.StringBody”

3.问题原因:如下图,libs1中的包编译时都OK,但该Android项目生成apk时,都没有被编进.dex,所以运行时缺失。全部放进libs中后,问题解决。

4.问题扩展:如下图,很多程序员可能不注意,这种从外部引用的jar包在最后生成apk时都会被丢掉。



------分隔线----------------------------
------分隔线----------------------------

最新技术推荐