What it is? Most of the information I could find this code (from http://sanjaal.com/java/tag/find-java-vendor/ )
public class GetJavaVersionAndVendor { public static void main(String args []) { String version=System.getProperty("java.version"); String vendor=System.getProperty("java.vendor"); System.out.println("Java Version Is: "+version); System.out.println("Java Vendor Is: "+vendor); } }
This code gave me the name "Oracle Corporation", which I think is the developer of the version of Java that I just installed.
I also learned that properties listed as "Sun Microsystems Inc" have been renamed to "Oracle Corporation." Thus, I am assuming that this "provider" has a properties file. It is right?
java
uranibaba
source share