3
我需要知道如何將現有的Java.class文件正確添加到Android Studio項目。我的目標是在Android項目中使用這些類。如何將現有的Java.class文件導入到Android Studio項目
類文件已經在Eclipse中寫入另一個Java項目。
我已經試過File->New->New Module->selecting Java Library->Finish
但這不能正常工作。
正如你可能都知道它默認使MyClass
類。 對於測試,我在我的MainActivity
中導入了com.example.*
,並試圖在onCreate()
方法中構建該類的對象。
問題是它不能編譯項目。我得到了以下錯誤:
Error:(7, 1) error: package com.example does not exist
Error:(16, 9) error: cannot find symbol class MyClass
Note: C:\Users\...\MainActivity.java uses or overrides a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
Error:Execution failed for task ':app:compileDebugJava'.
> Compilation failed; see the compiler error output for details.
任何人都可以解釋如何正確導入我的Java.class
文件,這樣我可以在我的項目中使用它們?
你有沒有找到這個問題的答案? – Gruntcakes
@Sausagedioxide:發表了一個答案 – rashok