我正在使用Mashape的Unirest library(unirest-java-1.2.6.jar)
構建應用程序。 我在運行時收到NoClassDefFoundError
。我試過CommonsWare的方法。但它沒有奏效。這是Java Build Path的屏幕截圖。這個截圖有什麼錯誤?Mashape Unirest Java:java.lang.NoClassDefFoundError
0
A
回答
3
我的Unirest-Java作者。
爲了使用該庫,你需要包含所需的依賴到項目:
- 阿帕奇HttpComponents客戶
- 阿帕奇HttpComponents AsyncClient
- 阿帕奇HttpComponents啞劇
- JSON庫
使用Maven是首選方法:https://github.com/Mashape/unirest-java#installing
否則庫可以從http://hc.apache.org/downloads.cgi和http://www.json.org/java/index.html
手動下載但同樣,我會強烈建議使用Maven。此外,請將Unirest庫更新爲最新版本,因爲現在已棄用1.2.6
。
0
建議使用Maven將所有內容封裝在一個超級罐子裏。
關於如何在您的Java項目中使用Unirest,請參閱此post。
相關問題
- 1. mashape API類「Unirest」未找到錯誤
- 2. 安裝Unirest Java的消耗Mashape API
- 3. java.lang.NoSuchFieldError:org.apache.http.message.BasicLineFormatter.INSTANCE來自Mashape Unirest Java應用程序
- 4. Laravel Mashape/Unirest API包和接口
- 5. 使用Unirest C#
- 6. 獲取使用Unirest用C#
- 7. 在Volley或HttpURLConnection中使用Mashape API
- 8. 嘗試使用Unirest
- 9. 從循環使用Python unirest列表
- 10. Unirest post方法不起作用?
- 11. 在Python中緩存Mashape API調用
- 12. UNIREST objective c貨幣轉換器Api
- 13. SSLPeerUnverifiedException(Unirest)
- 14. Unirest for Java
- 15. 的Java:java.lang.NoClassDefFoundError:使用javax /確認/ ConstraintDescriptor
- 16. 轉換捲曲Unirest
- 17. 如何解析來自Unirest調用的JSON結果
- 18. 如何在Swift上使用Mashape上的TextAnalysis API?
- 19. 未定義的命名空間使用Unirest
- 20. 在sapui5中使用mashape api
- 21. Mashape API objective-C樣板代碼給出錯誤
- 22. 使用一個以上的unirest請求帶帆
- 23. Unirest-JAVA無法查詢
- 24. 如何登錄UniRest結果
- 25. Mashape Objective-C for iOS - MashapeResponse to JSON Object
- 26. 在.NET中使用Mashape API的問題
- 27. Mashape api JavaScript代碼沒有運行?
- 28. Mashape Kong +智威湯遜無效令牌
- 29. (節點)獲取與節點unirest
- 30. 如何設置Unirest代理的憑據?
我試着安裝使用maven插件的日食。我用你的內容http://gist.github.com/thefosk/7325187創建了'pom.xml'文件。我通過右鍵單擊'pom.xml'來完成'Maven Install',並生成一個名爲'target'的文件夾,其中包含一組帶有snapshot.jar文件的文件。你可以在這裏看到截圖http://i41.tinypic.com/27y8q39.jpg當創建一個請求時,它顯示錯誤。如何導入Unirest? – DroidLearner
在項目中導入庫之後,還需要在源文件中導入依賴項。你可以在「public class [..]」之前添加這段代碼:https://gist.github.com/thefosk/7343991 – Mark
我的意思是說,除了Unirest其他文件正在使用Maven導入。它在android項目中創建了Snapshot.jar文件。請看這個截圖http://i.imgur.com/auHM1SX.jpg – DroidLearner