fileversion 55.0 this version of the Java Runtime only recognizes class file versions up to 52.0:已解决

文章目录

  • 问题描述
  • 解决方法
  • 文章参考

问题描述

运行时会报错:java:无法访i问org.testng.annotations.AfterTest
错误的类文件:/D:/repository/org/testng/testng/7.6.l/testng-7.6.1.jarI/org/testng/annotations/AfterTest.class
类文件具有错误的版本55.0,应为52,0请删除该文件或确保该文件位于正确的类路径子目录中,如下图所示。

在这里插入图片描述

即便是运行通过,在向执行过程中依然会报错:

orgtestngTestNG has been compiled by a more recent version of the Java Runtime (class file version 55.0), this version of the Java Runtime only recognizes class file versions up to 52.0

解决方法

我们在idea下找到setting,如下图所示。

fileversion 55.0 this version of the Java Runtime only recognizes class file versions up to 52.0:已解决_第1张图片
进入新界面后,我们找到Build Exceution,Deployment,找到Compiler下的Java Compiler,确保使用的jdk版本与Project bytecode versiore中填写的版本一致,如果使用的是2020以上的idea,Project bytecode versiore中1.8也可以写成8,如下图所示。

fileversion 55.0 this version of the Java Runtime only recognizes class file versions up to 52.0:已解决_第2张图片
再找到设置下的Project Structure,如下图所示

fileversion 55.0 this version of the Java Runtime only recognizes class file versions up to 52.0:已解决_第3张图片
确保这里的版本也使用一致,如下图所示。

fileversion 55.0 this version of the Java Runtime only recognizes class file versions up to 52.0:已解决_第4张图片
我们在回到代码界面,按下Ctrl+N,打开搜索框,点击ALL,在全部中搜索Run/Debug Configurations,如下图所示。

fileversion 55.0 this version of the Java Runtime only recognizes class file versions up to 52.0:已解决_第5张图片
我们选择第一项Edit Configurations进入其中,确保这里的JRE版本也一致,如下图所示。

fileversion 55.0 this version of the Java Runtime only recognizes class file versions up to 52.0:已解决_第6张图片
还需要注意的有:在poml等等的.xml文件中对jdk的描述,写1.8或者是11,即target=“1.8”,此处不可写8

文章参考

http://t.csdn.cn/2ysk2


以上就是本文全部内容,如果它对您有帮助,请您帮我点个赞,这对我真的很重要

你可能感兴趣的:(java,intellij-idea,开发语言)