What is the difference in properties java.runtime.version and java.version The Next CEO of Stack OverflowWhat is reflection and why is it useful?Differences between HashMap and Hashtable?What is the difference between public, protected, package-private and private in Java?What is a serialVersionUID and why should I use it?Difference between StringBuilder and StringBufferDifference between wait() and sleep()What is the difference between JDK and JRE?What is a JavaBean exactly?What's the difference between @Component, @Repository & @Service annotations in Spring?What exactly is Apache Camel?

Make solar eclipses exceedingly rare, but still have new moons

WOW air has ceased operation, can I get my tickets refunded?

If the heap is initialized for security, then why is the stack uninitialized?

What is the result of assigning to std::vector<T>::begin()?

How do I transpose the 1st and -1th levels of an arbitrarily nested array?

Is it professional to write unrelated content in an almost-empty email?

How did people program for Consoles with multiple CPUs?

Example of a Mathematician/Physicist whose Other Publications during their PhD eclipsed their PhD Thesis

Return the Closest Prime Number

If Nick Fury and Coulson already knew about aliens (Kree and Skrull) why did they wait until Thor's appearance to start making weapons?

What happens if you roll doubles 3 times then land on "Go to jail?"

Inappropriate reference requests from Journal reviewers

Can I equip Skullclamp on a creature I am sacrificing?

What flight has the highest ratio of time difference to flight time?

Multiple labels for a single equation

Written every which way

How powerful is the invisibility granted by the Gloom Stalker ranger's Umbral Sight feature?

What exact does MIB represent in SNMP? How is it different from OID?

Why has the US not been more assertive in confronting Russia in recent years?

What does "Its cash flow is deeply negative" mean?

How did the Bene Gesserit know how to make a Kwisatz Haderach?

Is it ever safe to open a suspicious html file (e.g. email attachment)?

Is micro rebar a better way to reinforce concrete than rebar?

Are there any limitations on attacking while grappling?



What is the difference in properties java.runtime.version and java.version



The Next CEO of Stack OverflowWhat is reflection and why is it useful?Differences between HashMap and Hashtable?What is the difference between public, protected, package-private and private in Java?What is a serialVersionUID and why should I use it?Difference between StringBuilder and StringBufferDifference between wait() and sleep()What is the difference between JDK and JRE?What is a JavaBean exactly?What's the difference between @Component, @Repository & @Service annotations in Spring?What exactly is Apache Camel?










8















For logging purposes I'm getting the Java version written in log while Java program is running.



I found out that I can get the version with



System.getProperty("java.runtime.version") -> 1.8.0_202-b08


and



System.getProperty("java.version") -> 1.8.0_202


Result obviously is missing the "build" information in other but are there any other difference besides the result? Any certain cases when I should be using the first option rather than the second?










share|improve this question



















  • 4





    I’m not sure you can rely on java.runtime.version anymore, considering it is not documented. I would avoid it altogether.

    – VGR
    yesterday















8















For logging purposes I'm getting the Java version written in log while Java program is running.



I found out that I can get the version with



System.getProperty("java.runtime.version") -> 1.8.0_202-b08


and



System.getProperty("java.version") -> 1.8.0_202


Result obviously is missing the "build" information in other but are there any other difference besides the result? Any certain cases when I should be using the first option rather than the second?










share|improve this question



















  • 4





    I’m not sure you can rely on java.runtime.version anymore, considering it is not documented. I would avoid it altogether.

    – VGR
    yesterday













8












8








8








For logging purposes I'm getting the Java version written in log while Java program is running.



I found out that I can get the version with



System.getProperty("java.runtime.version") -> 1.8.0_202-b08


and



System.getProperty("java.version") -> 1.8.0_202


Result obviously is missing the "build" information in other but are there any other difference besides the result? Any certain cases when I should be using the first option rather than the second?










share|improve this question
















For logging purposes I'm getting the Java version written in log while Java program is running.



I found out that I can get the version with



System.getProperty("java.runtime.version") -> 1.8.0_202-b08


and



System.getProperty("java.version") -> 1.8.0_202


Result obviously is missing the "build" information in other but are there any other difference besides the result? Any certain cases when I should be using the first option rather than the second?







java system-properties






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited 16 hours ago









fantaghirocco

3,82852738




3,82852738










asked yesterday









JokkeriJokkeri

16715




16715







  • 4





    I’m not sure you can rely on java.runtime.version anymore, considering it is not documented. I would avoid it altogether.

    – VGR
    yesterday












  • 4





    I’m not sure you can rely on java.runtime.version anymore, considering it is not documented. I would avoid it altogether.

    – VGR
    yesterday







4




4





I’m not sure you can rely on java.runtime.version anymore, considering it is not documented. I would avoid it altogether.

– VGR
yesterday





I’m not sure you can rely on java.runtime.version anymore, considering it is not documented. I would avoid it altogether.

– VGR
yesterday












3 Answers
3






active

oldest

votes


















5
















System Property Name | System Property Content | Where Displayed in java version Output
---------------------|--------------------------|---------------------------------------
java.version | product version | Line one displays the product version
---------------------|--------------------------|---------------------------------------
java.runtime.version | product version | Line one displays the product version
| product build identifier | Line two displays the build identifier


From the J2SE SDK/JRE Version String Naming Convention documentation:




  • The content of the java.runtime.version system property can be expanded (beyond that of the java.version system property) to include the build id.



It seems that the property value can therefore be equal to the java.runtime content or differentiate by the build id as already pointed out in the question.



Anyway, as previously stated in a comment to the question, the java.runtime.version property doesn't appear among the currently documented system properties.






share|improve this answer
































    5














    java.version is a product version information of Java Runtime environment(JRE). JRE is an implementation of the Java Virtual Machine which actually executes Java programs.



    java.runtime.version is a product version along with build identifier of JRE.






    share|improve this answer
































      3














      One is JDK version, java.version and as the name suggest other is JRE version, R for the runtime






      share|improve this answer


















      • 1





        I'm not 100% sure but I think this might be a false assumption... As I run the app with only JRE (no JDK) both are working. I think fantaghirocco and Aniket Sahrawat are correct with their answer and the documentation VGR linked supports this

        – Jokkeri
        21 hours ago












      Your Answer






      StackExchange.ifUsing("editor", function ()
      StackExchange.using("externalEditor", function ()
      StackExchange.using("snippets", function ()
      StackExchange.snippets.init();
      );
      );
      , "code-snippets");

      StackExchange.ready(function()
      var channelOptions =
      tags: "".split(" "),
      id: "1"
      ;
      initTagRenderer("".split(" "), "".split(" "), channelOptions);

      StackExchange.using("externalEditor", function()
      // Have to fire editor after snippets, if snippets enabled
      if (StackExchange.settings.snippets.snippetsEnabled)
      StackExchange.using("snippets", function()
      createEditor();
      );

      else
      createEditor();

      );

      function createEditor()
      StackExchange.prepareEditor(
      heartbeatType: 'answer',
      autoActivateHeartbeat: false,
      convertImagesToLinks: true,
      noModals: true,
      showLowRepImageUploadWarning: true,
      reputationToPostImages: 10,
      bindNavPrevention: true,
      postfix: "",
      imageUploader:
      brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
      contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
      allowUrls: true
      ,
      onDemand: true,
      discardSelector: ".discard-answer"
      ,immediatelyShowMarkdownHelp:true
      );



      );













      draft saved

      draft discarded


















      StackExchange.ready(
      function ()
      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55399001%2fwhat-is-the-difference-in-properties-java-runtime-version-and-java-version%23new-answer', 'question_page');

      );

      Post as a guest















      Required, but never shown

























      3 Answers
      3






      active

      oldest

      votes








      3 Answers
      3






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      5
















      System Property Name | System Property Content | Where Displayed in java version Output
      ---------------------|--------------------------|---------------------------------------
      java.version | product version | Line one displays the product version
      ---------------------|--------------------------|---------------------------------------
      java.runtime.version | product version | Line one displays the product version
      | product build identifier | Line two displays the build identifier


      From the J2SE SDK/JRE Version String Naming Convention documentation:




      • The content of the java.runtime.version system property can be expanded (beyond that of the java.version system property) to include the build id.



      It seems that the property value can therefore be equal to the java.runtime content or differentiate by the build id as already pointed out in the question.



      Anyway, as previously stated in a comment to the question, the java.runtime.version property doesn't appear among the currently documented system properties.






      share|improve this answer





























        5
















        System Property Name | System Property Content | Where Displayed in java version Output
        ---------------------|--------------------------|---------------------------------------
        java.version | product version | Line one displays the product version
        ---------------------|--------------------------|---------------------------------------
        java.runtime.version | product version | Line one displays the product version
        | product build identifier | Line two displays the build identifier


        From the J2SE SDK/JRE Version String Naming Convention documentation:




        • The content of the java.runtime.version system property can be expanded (beyond that of the java.version system property) to include the build id.



        It seems that the property value can therefore be equal to the java.runtime content or differentiate by the build id as already pointed out in the question.



        Anyway, as previously stated in a comment to the question, the java.runtime.version property doesn't appear among the currently documented system properties.






        share|improve this answer



























          5












          5








          5









          System Property Name | System Property Content | Where Displayed in java version Output
          ---------------------|--------------------------|---------------------------------------
          java.version | product version | Line one displays the product version
          ---------------------|--------------------------|---------------------------------------
          java.runtime.version | product version | Line one displays the product version
          | product build identifier | Line two displays the build identifier


          From the J2SE SDK/JRE Version String Naming Convention documentation:




          • The content of the java.runtime.version system property can be expanded (beyond that of the java.version system property) to include the build id.



          It seems that the property value can therefore be equal to the java.runtime content or differentiate by the build id as already pointed out in the question.



          Anyway, as previously stated in a comment to the question, the java.runtime.version property doesn't appear among the currently documented system properties.






          share|improve this answer

















          System Property Name | System Property Content | Where Displayed in java version Output
          ---------------------|--------------------------|---------------------------------------
          java.version | product version | Line one displays the product version
          ---------------------|--------------------------|---------------------------------------
          java.runtime.version | product version | Line one displays the product version
          | product build identifier | Line two displays the build identifier


          From the J2SE SDK/JRE Version String Naming Convention documentation:




          • The content of the java.runtime.version system property can be expanded (beyond that of the java.version system property) to include the build id.



          It seems that the property value can therefore be equal to the java.runtime content or differentiate by the build id as already pointed out in the question.



          Anyway, as previously stated in a comment to the question, the java.runtime.version property doesn't appear among the currently documented system properties.







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited 16 hours ago

























          answered yesterday









          fantaghiroccofantaghirocco

          3,82852738




          3,82852738























              5














              java.version is a product version information of Java Runtime environment(JRE). JRE is an implementation of the Java Virtual Machine which actually executes Java programs.



              java.runtime.version is a product version along with build identifier of JRE.






              share|improve this answer





























                5














                java.version is a product version information of Java Runtime environment(JRE). JRE is an implementation of the Java Virtual Machine which actually executes Java programs.



                java.runtime.version is a product version along with build identifier of JRE.






                share|improve this answer



























                  5












                  5








                  5







                  java.version is a product version information of Java Runtime environment(JRE). JRE is an implementation of the Java Virtual Machine which actually executes Java programs.



                  java.runtime.version is a product version along with build identifier of JRE.






                  share|improve this answer















                  java.version is a product version information of Java Runtime environment(JRE). JRE is an implementation of the Java Virtual Machine which actually executes Java programs.



                  java.runtime.version is a product version along with build identifier of JRE.







                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited yesterday

























                  answered yesterday









                  Aniket SahrawatAniket Sahrawat

                  6,27121339




                  6,27121339





















                      3














                      One is JDK version, java.version and as the name suggest other is JRE version, R for the runtime






                      share|improve this answer


















                      • 1





                        I'm not 100% sure but I think this might be a false assumption... As I run the app with only JRE (no JDK) both are working. I think fantaghirocco and Aniket Sahrawat are correct with their answer and the documentation VGR linked supports this

                        – Jokkeri
                        21 hours ago
















                      3














                      One is JDK version, java.version and as the name suggest other is JRE version, R for the runtime






                      share|improve this answer


















                      • 1





                        I'm not 100% sure but I think this might be a false assumption... As I run the app with only JRE (no JDK) both are working. I think fantaghirocco and Aniket Sahrawat are correct with their answer and the documentation VGR linked supports this

                        – Jokkeri
                        21 hours ago














                      3












                      3








                      3







                      One is JDK version, java.version and as the name suggest other is JRE version, R for the runtime






                      share|improve this answer













                      One is JDK version, java.version and as the name suggest other is JRE version, R for the runtime







                      share|improve this answer












                      share|improve this answer



                      share|improve this answer










                      answered yesterday









                      Rohail UsmanRohail Usman

                      447




                      447







                      • 1





                        I'm not 100% sure but I think this might be a false assumption... As I run the app with only JRE (no JDK) both are working. I think fantaghirocco and Aniket Sahrawat are correct with their answer and the documentation VGR linked supports this

                        – Jokkeri
                        21 hours ago













                      • 1





                        I'm not 100% sure but I think this might be a false assumption... As I run the app with only JRE (no JDK) both are working. I think fantaghirocco and Aniket Sahrawat are correct with their answer and the documentation VGR linked supports this

                        – Jokkeri
                        21 hours ago








                      1




                      1





                      I'm not 100% sure but I think this might be a false assumption... As I run the app with only JRE (no JDK) both are working. I think fantaghirocco and Aniket Sahrawat are correct with their answer and the documentation VGR linked supports this

                      – Jokkeri
                      21 hours ago






                      I'm not 100% sure but I think this might be a false assumption... As I run the app with only JRE (no JDK) both are working. I think fantaghirocco and Aniket Sahrawat are correct with their answer and the documentation VGR linked supports this

                      – Jokkeri
                      21 hours ago


















                      draft saved

                      draft discarded
















































                      Thanks for contributing an answer to Stack Overflow!


                      • Please be sure to answer the question. Provide details and share your research!

                      But avoid


                      • Asking for help, clarification, or responding to other answers.

                      • Making statements based on opinion; back them up with references or personal experience.

                      To learn more, see our tips on writing great answers.




                      draft saved


                      draft discarded














                      StackExchange.ready(
                      function ()
                      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55399001%2fwhat-is-the-difference-in-properties-java-runtime-version-and-java-version%23new-answer', 'question_page');

                      );

                      Post as a guest















                      Required, but never shown





















































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown

































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown







                      Popular posts from this blog

                      រឿង រ៉ូមេអូ និង ហ្ស៊ុយលីយេ សង្ខេបរឿង តួអង្គ បញ្ជីណែនាំ

                      QGIS export composer to PDF scale the map [closed] Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?Print Composer QGIS 2.6, how to export image?QGIS 2.8.1 print composer won't export all OpenCycleMap base layer tilesSave Print/Map QGIS composer view as PNG/PDF using Python (without changing anything in visible layout)?Export QGIS Print Composer PDF with searchable text labelsQGIS Print Composer does not change from landscape to portrait orientation?How can I avoid map size and scale changes in print composer?Fuzzy PDF export in QGIS running on macSierra OSExport the legend into its 100% size using Print ComposerScale-dependent rendering in QGIS PDF output

                      PDF-ში გადმოწერა სანავიგაციო მენიუproject page