当前位置: 代码迷 >> Android >> Android开发异常——Could not find class
  详细解决方案

Android开发异常——Could not find class

热度:26   发布时间:2016-05-01 12:00:33.0
Android开发错误——Could not find class
错误信息:
Could not find class ** referenced from method **

05-21 22:51:22.548: E/dalvikvm(226): Could not find class 'org.ksoap2.serialization.SoapObject', referenced from method cn.hi.bar.api.LocalAccessor.updateContactToWebService


错误原因及解决办法:
1.所建工程中没有导入jar包,如果是把别人的工程import到自己的eclipse中,需要右击工程Bulid Path->Add Libraries->User Library->User Libraries->new(起一个名字 随便A)->Add Jars(将需要的jar包添加到A中) 如图所示:
[img]

[/img]



2.在properties中没有设置,右键工程->properties->Java Build Path->Order and Export 将刚刚新建的A勾选->点击ok 就可以了。如图所示:
[img]

[/img]



这样就可以将jar包一同编译到.apk文件中。在模拟器下运行就不会出Could not find class ** referenced from method **错误了。
  相关解决方案