1. 程式人生 > >Android開發錯誤——Could not find class

Android開發錯誤——Could not find class


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中) 如圖所示: Android開發錯誤鈥斺擟ould <wbr>not <wbr>find <wbr>class

2.在properties中沒有設定,右鍵工程->properties->Java Build Path->Order and Export 將剛剛新建的A勾選->點選ok 就可以了。如圖所示: Android開發錯誤鈥斺擟ould <wbr>not <wbr>find <wbr>class 這樣就可以將jar包一同編譯到.apk檔案中。在模擬器下執行就不會出Could not find class ** referenced from method **錯誤了。