Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Eclipse 中工作,我正在尝试使用 GSON。我在 Eclipse 中添加了 gson-2.2.2.jar 作为外部 jar。然后我在模拟器中运行 Android 应用程序。我得到“找不到类 'com.google.gson.Gson',从方法 com.mycompany.myapp.MyMethod 引用”。
这可能是什么原因造成的?
将 jar 文件复制到libs/项目目录的文件夹中。我有类似的错误并复制 jar 文件来libs/解决问题。
libs/
右键单击项目 -> 构建路径 -> 配置构建路径 在“库”选项卡中,您可以添加外部 jar。确保然后转到 Order and Export 选项卡并确保选中该框,因为这是构建路径顺序。就像 SRN 说的那样,你应该把它添加到你的 libs 文件夹中,然后在本地而不是外部引用它。