Search
Sponsors
Sponsors

Posts Tagged ‘System.getProperty’

Get JDK version

Tuesday, February 24th, 2009

/**
 * @(#)test.java
 * test application
 */
import java.io.*;

public class test
{
   
    public static void main(String[] args)
    {
  String version = System.getProperty(”java.version”);
        System.out.println(”JDK version installed is “+ version);

    }

}

On my system I had

JDK version installed is 1.6.0_12

Get the user name

Tuesday, February 24th, 2009

/**
 * @(#)test.java
 * test application
 */
import java.io.*;

public class test
{
   
    public static void main(String[] args)
    {
  String name = System.getProperty(”user.name”);
        System.out.println(name);
    }

}

Translate