- Loading...
...
| Code Block | ||
|---|---|---|
| ||
var System = Java.type("java.lang.System")
// print all Java System property name, value pairs
for each (p in http://System.properties .entrySet()) {
print(p.key, "=", p.value)
}
// print all environment variables with values
for each (e in System.env.entrySet()) {
print(e.key, "=", e.value)
} |
...