blob: 736880821f71ce9bb57ce4b4e34571dd5dfaf6b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import java.lang.Integer;
public class JavaCheck
{
private static final String key = "os.arch";
public static void main (String [] args)
{
String property = System.getProperty(key);
System.out.println(key + "=" + property);
if (property != null)
System.exit(0);
System.exit(1);
}
}
|