has been compiled by a more recent version of the Java Runtime (class file version 57.0), this version of the Java Runtime only recognizes class file versions up to 52.0
原因:因为重新配置了别的版本的jdk、可能你的电脑中有不止一个版本的jdk。导致了编译环境和运行环境不一致
解决办法第一步:在项目的属性里设置jdk版本,方法是
右击项目-->properties-->java compiler --> Enable project specific settings -->将compiler compliance level设置为1.8,也就是与jvm一致的版本
此举有时候并不能解决问题......(这就很尴尬)
如果无法解决问题,那么就是你的项目运行环境出现了错误;
Error: A JNI error has occurred, please check your installation and try again
原文:https://www.cnblogs.com/mitoris/p/14091229.html