Sunday 24 August 2014

Get Java Vendor information

You can retrieve the vendor information using "java.vm.vendor" property.

public class GetVendor {
    public static void main(String args[]){
        System.out.println(System.getProperty("java.vm.vendor"));
    }
}

Output
Oracle Corporation



                                                             Home

No comments:

Post a Comment