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?
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.version
anymore, considering it is not documented. I would avoid it altogether.
– VGR
yesterday
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 16 hours ago
fantaghirocco
3,82852738
3,82852738
asked yesterday
JokkeriJokkeri
16715
16715
4
I’m not sure you can rely onjava.runtime.version
anymore, considering it is not documented. I would avoid it altogether.
– VGR
yesterday
add a comment |
4
I’m not sure you can rely onjava.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
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.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.
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
21 hours ago
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.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.
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.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.
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.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.
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.
edited 16 hours ago
answered yesterday
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 yesterday
answered yesterday
Aniket SahrawatAniket Sahrawat
6,27121339
6,27121339
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
21 hours ago
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
21 hours ago
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 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
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
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
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.version
anymore, considering it is not documented. I would avoid it altogether.– VGR
yesterday