如何修复此错误 android:找不到 class 'com.owlike.genson.Genson'

how to fix this error android: Could not find class 'com.owlike.genson.Genson'

final Collaborateur collaborateur =  new Genson().deserialize(scanner.nextLine(),Collaborateur.class);

05-17 12:00:20.058: E/dalvikvm(3150): Could not find class 'com.owlike.genson.Genson', referenced from method com.example.ayit.MainActivity.run

请查看 this 以消除错误。

here 下载 jar 文件并将其添加到您的项目中。

希望这能解决您的错误。

您需要添加项目 .jar 或依赖项:

<dependency>
  <groupId>com.owlike</groupId>
  <artifactId>genson</artifactId>
  <version>1.4</version>
</dependency>