I am implementing GetDown on my application and configure it to embed a JRE to prevent problems of version installed by the users.
But I don't find a way to check if the embedded JRE is really the one used, and i can uninstall java on my computer to test it (my employer didn't give me admin access, yay!).
The command System.out.println(System.getProperty("java.version")); show me the java installed on the user's computer, but how can I get what verion of java the application is really using.
Thank you for your answers and sorry for my bad english.