What is the difference in properties java.runtime.version and java.versionWhat 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?

Does the Idaho Potato Commission associate potato skins with healthy eating?

What does the same-ish mean?

How to remove border from elements in the last row?

Why is the sentence "Das ist eine Nase" correct?

What exactly is ineptocracy?

What's the meaning of "Sollensaussagen"?

Use of noexpand in the implementation of TextOrMath for eTeX

How to prevent "they're falling in love" trope

My ex-girlfriend uses my Apple ID to login to her iPad, do I have to give her my Apple ID password to reset it?

Convert seconds to minutes

How to compactly explain secondary and tertiary characters without resorting to stereotypes?

files created then deleted at every second in tmp directory

Does Dispel Magic work on Tiny Hut?

Why do I get negative height?

Were days ever written as ordinal numbers when writing day-month-year?

Is it possible to map the firing of neurons in the human brain so as to stimulate artificial memories in someone else?

How exploitable/balanced is this homebrew spell: Spell Permanency?

How badly should I try to prevent a user from XSSing themselves?

Implication of namely

Obtaining database information and values in extended properties

Is there a hemisphere-neutral way of specifying a season?

How obscure is the use of 令 in 令和?

How does a dynamic QR code work?

How can I prove that a state of equilibrium is unstable?



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


What 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?













9















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
    Mar 28 at 13:52















9















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
    Mar 28 at 13:52













9












9








9








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 Mar 29 at 11:21









fantaghirocco

3,82852738




3,82852738










asked Mar 28 at 13:36









JokkeriJokkeri

17215




17215







  • 4





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

    – VGR
    Mar 28 at 13:52












  • 4





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

    – VGR
    Mar 28 at 13:52







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
Mar 28 at 13:52





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

– VGR
Mar 28 at 13:52












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
        Mar 29 at 6:10












      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 Mar 29 at 11:19

























          answered Mar 28 at 13:40









          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 Mar 28 at 14:44

























                  answered Mar 28 at 13:44









                  Aniket SahrawatAniket Sahrawat

                  6,48421340




                  6,48421340





















                      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
                        Mar 29 at 6:10
















                      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
                        Mar 29 at 6:10














                      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 Mar 28 at 13:44









                      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
                        Mar 29 at 6:10













                      • 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
                        Mar 29 at 6:10








                      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
                      Mar 29 at 6:10






                      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
                      Mar 29 at 6:10


















                      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

                      Boston (Lincolnshire) Stedsbyld | Berne yn Boston | NavigaasjemenuBoston Borough CouncilBoston, Lincolnshire

                      Ballerup Komuun Stääden an saarpen | Futnuuten | Luke uk diar | Nawigatsjuunwww.ballerup.dkwww.statistikbanken.dk: Tabelle BEF44 (Folketal pr. 1. januar fordelt på byer)Commonskategorii: Ballerup Komuun55° 44′ N, 12° 22′ O

                      Trouble understanding the speech of overseas colleaguesHow can I better understand manager or clients with strong accents?Adding more movement and speech at the fundamental level to a highly-sedentary job?Difficulty in understanding Manager's accent(language and communication)How to adjust yourself where your colleagues are not understanding to you?Understanding manager's expectationsForeigner and colleagues using slangHaving difficulty understanding meetingsHow do you breathe when giving a speech?Trouble Waking Up for Emergencies (On-Call)Problems with colleaguesColleagues feeling insecure when I do my work