<bdo id='TAshN'></bdo><ul id='TAshN'></ul>

    1. <legend id='TAshN'><style id='TAshN'><dir id='TAshN'><q id='TAshN'></q></dir></style></legend>
      <tfoot id='TAshN'></tfoot>

        <small id='TAshN'></small><noframes id='TAshN'>

        <i id='TAshN'><tr id='TAshN'><dt id='TAshN'><q id='TAshN'><span id='TAshN'><b id='TAshN'><form id='TAshN'><ins id='TAshN'></ins><ul id='TAshN'></ul><sub id='TAshN'></sub></form><legend id='TAshN'></legend><bdo id='TAshN'><pre id='TAshN'><center id='TAshN'></center></pre></bdo></b><th id='TAshN'></th></span></q></dt></tr></i><div id='TAshN'><tfoot id='TAshN'></tfoot><dl id='TAshN'><fieldset id='TAshN'></fieldset></dl></div>

      1. 如何修复 java.lang.UnsupportedClassVersionError:不支持的 major.minor

        How to fix java.lang.UnsupportedClassVersionError: Unsupported major.minor version(如何修复 java.lang.UnsupportedClassVersionError:不支持的 major.minor 版本)
        <tfoot id='PIq7p'></tfoot>

      2. <legend id='PIq7p'><style id='PIq7p'><dir id='PIq7p'><q id='PIq7p'></q></dir></style></legend>
          <bdo id='PIq7p'></bdo><ul id='PIq7p'></ul>
            <tbody id='PIq7p'></tbody>
                <i id='PIq7p'><tr id='PIq7p'><dt id='PIq7p'><q id='PIq7p'><span id='PIq7p'><b id='PIq7p'><form id='PIq7p'><ins id='PIq7p'></ins><ul id='PIq7p'></ul><sub id='PIq7p'></sub></form><legend id='PIq7p'></legend><bdo id='PIq7p'><pre id='PIq7p'><center id='PIq7p'></center></pre></bdo></b><th id='PIq7p'></th></span></q></dt></tr></i><div id='PIq7p'><tfoot id='PIq7p'></tfoot><dl id='PIq7p'><fieldset id='PIq7p'></fieldset></dl></div>

                  <small id='PIq7p'></small><noframes id='PIq7p'>

                1. 本文介绍了如何修复 java.lang.UnsupportedClassVersionError:不支持的 major.minor 版本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我正在尝试使用 Notepad++ 作为我的多合一工具编辑、运行、编译等.

                  I am trying to use Notepad++ as my all-in-one tool edit, run, compile, etc.

                  我已安装 JRE,并且已将路径变量设置为 .../bin 目录.

                  I have JRE installed, and I have setup my path variable to the .../bin directory.

                  当我在 Notepad++ 中运行Hello world"时,我收到以下消息:

                  When I run my "Hello world" in Notepad++, I get this message:

                  java.lang.UnsupportedClassVersionError: test_hello_world :
                   Unsupported major.minor version 51.0
                      at java.lang.ClassLoader.defineClass1(Native Method)
                      at java.lang.ClassLoader.defineClassCond(Unknown Source)
                         .........................................
                  

                  我认为这里的问题在于版本;某些 Java 版本可能太旧或太新.

                  I think the problem here is about versions; some versions of Java may be old or too new.

                  1. 我该如何解决?
                  2. 我是否应该安装 JDK,并将我的路径变量设置为 JDK 而不是 JRE?
                  3. JRE和JDK中的PATH变量有什么区别?
                  1. How do I fix it?
                  2. Should I install the JDK, and setup my path variable to the JDK instead of JRE?
                  3. What is the difference between the PATH variable in JRE or JDK?

                  推荐答案

                  显示的版本号描述了类文件兼容的 JRE 的版本.

                  The version number shown describes the version of the JRE the class file is compatible with.

                  报告的主要数字是:

                  Java SE 17 = 61,
                  Java SE 16 = 60, 
                  Java SE 15 = 59,
                  Java SE 14 = 58,
                  Java SE 13 = 57,
                  Java SE 12 = 56,
                  Java SE 11 = 55,
                  Java SE 10 = 54,
                  Java SE 9 = 53,
                  Java SE 8 = 52,
                  Java SE 7 = 51,
                  Java SE 6.0 = 50,
                  Java SE 5.0 = 49,
                  JDK 1.4 = 48,
                  JDK 1.3 = 47,
                  JDK 1.2 = 46,
                  JDK 1.1 = 45
                  

                  (来源:维基百科)

                  要解决实际问题,您应该尝试使用较新版本的 Java JRE 运行 Java 代码,或者为 Java 编译器指定目标参数以指示编译器创建与早期 Java 版本兼容的代码.

                  To fix the actual problem you should try to either run the Java code with a newer version of Java JRE or specify the target parameter to the Java compiler to instruct the compiler to create code compatible with earlier Java versions.

                  例如,为了生成与 Java 1.4 兼容的类文件,请使用以下命令行:

                  For example, in order to generate class files compatible with Java 1.4, use the following command line:

                  javac -target 1.4 HelloWorld.java
                  

                  使用较新版本的 Java 编译器,您可能会收到有关未设置引导类路径的警告.博文中提供了有关此错误的更多信息新的 javac 警告,用于设置较旧的源而不引导类路径.

                  With newer versions of the Java compiler you are likely to get a warning about the bootstrap class path not being set. More information about this error is available in a blog post New javac warning for setting an older source without bootclasspath.

                  这篇关于如何修复 java.lang.UnsupportedClassVersionError:不支持的 major.minor 版本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Bytecode features not available in the Java language(Java 语言中不可用的字节码功能)
                  ClassCastException because of classloaders?(ClassCastException 因为类加载器?)
                  How can I add a Javaagent to a JVM without stopping the JVM?(如何在不停止 JVM 的情况下将 Javaagent 添加到 JVM?)
                  Cannot load 64-bit SWT libraries on 32-bit JVM ( replacing SWT file )(无法在 32 位 JVM 上加载 64 位 SWT 库(替换 SWT 文件))
                  Encourage the JVM to GC rather than grow the heap?(鼓励 JVM 进行 GC 而不是增加堆?)
                  Why a sawtooth shaped graph?(为什么是锯齿形图形?)
                    <bdo id='P40Pa'></bdo><ul id='P40Pa'></ul>
                      <tbody id='P40Pa'></tbody>
                    <tfoot id='P40Pa'></tfoot>

                        <i id='P40Pa'><tr id='P40Pa'><dt id='P40Pa'><q id='P40Pa'><span id='P40Pa'><b id='P40Pa'><form id='P40Pa'><ins id='P40Pa'></ins><ul id='P40Pa'></ul><sub id='P40Pa'></sub></form><legend id='P40Pa'></legend><bdo id='P40Pa'><pre id='P40Pa'><center id='P40Pa'></center></pre></bdo></b><th id='P40Pa'></th></span></q></dt></tr></i><div id='P40Pa'><tfoot id='P40Pa'></tfoot><dl id='P40Pa'><fieldset id='P40Pa'></fieldset></dl></div>
                        <legend id='P40Pa'><style id='P40Pa'><dir id='P40Pa'><q id='P40Pa'></q></dir></style></legend>

                          <small id='P40Pa'></small><noframes id='P40Pa'>