Re: Determining execution environment properties.

2018-09-19 Thread Paul Franz
AZ, This seems to be turning more and more into questions about Java then how to use NetBeans. But I will help you, so if you check the documentation located at: https://docs.oracle.com/javase/7/docs/api/java/lang/ProcessBuilder.html which states that the "public Map environmen

Determining execution environment properties.

2018-09-19 Thread A Z
I am using the following to try and determine some more execution context: ProcessBuilder builder = new ProcessBuilder(); Map map = builder.environment(); String context = map.get("PROMPT"); if(context instanceof String) //... The only thing that I have been able to d