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?
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
add a comment |
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
4
I’m not sure you can rely onjava.runtime.versionanymore, considering it is not documented. I would avoid it altogether.
– VGR
Mar 28 at 13:52
add a comment |
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
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
java system-properties
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 onjava.runtime.versionanymore, considering it is not documented. I would avoid it altogether.
– VGR
Mar 28 at 13:52
add a comment |
4
I’m not sure you can rely onjava.runtime.versionanymore, 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
add a comment |
3 Answers
3
active
oldest
votes
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.versionsystem 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.
add a comment |
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.
add a comment |
One is JDK version, java.version and as the name suggest other is JRE version, R for the runtime
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
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.versionsystem 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.
add a comment |
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.versionsystem 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.
add a comment |
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.versionsystem 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.
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.versionsystem 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.
edited Mar 29 at 11:19
answered Mar 28 at 13:40
fantaghiroccofantaghirocco
3,82852738
3,82852738
add a comment |
add a comment |
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.
add a comment |
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.
add a comment |
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.
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.
edited Mar 28 at 14:44
answered Mar 28 at 13:44
Aniket SahrawatAniket Sahrawat
6,48421340
6,48421340
add a comment |
add a comment |
One is JDK version, java.version and as the name suggest other is JRE version, R for the runtime
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
add a comment |
One is JDK version, java.version and as the name suggest other is JRE version, R for the runtime
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
add a comment |
One is JDK version, java.version and as the name suggest other is JRE version, R for the runtime
One is JDK version, java.version and as the name suggest other is JRE version, R for the runtime
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
add a comment |
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
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
4
I’m not sure you can rely on
java.runtime.versionanymore, considering it is not documented. I would avoid it altogether.– VGR
Mar 28 at 13:52