Your IP : 216.73.216.74


Current Path : /proc/self/root/usr/local/rvm/scripts/extras/java_read_properties/
Upload File :
Current File : //proc/self/root/usr/local/rvm/scripts/extras/java_read_properties/ReadProperties.java

public class ReadProperties
{
  public static void main(String[] args)
  {
    if (args.length == 0) System.exit(1);
    String property = System.getProperty(args[0]);
    if (property == null) System.exit(2);
    System.out.println(property);
  }
}