 |
|
|
ShowProperties.java
|
/*
* Author: Havard Rast Blok
* E-mail:
* Web : www.rememberjava.com
*/
import java.util.*;
/**
* Lists the system properties in the JVM.
* This includes some, but not all, of the system environment varaibles.
*/
public class ShowProperties
{
public static void main(String[] args)
{
Properties p;
p = System.getProperties();
p.list( System.out );
}
}
|
|
|
 |