Dec 14, 2006 #1 lovekang Programmer Feb 16, 2006 86 KR When you type "set" in the dos prompt, you can get lot's of variables and values. other than what you get using System getProperties method, is it possible? if so how? thanks in advance.
When you type "set" in the dos prompt, you can get lot's of variables and values. other than what you get using System getProperties method, is it possible? if so how? thanks in advance.
Dec 14, 2006 #2 timw Programmer May 3, 2000 1,264 GB Think you'll have to do Runtime.getRuntime().exec("set") to get a Process and read the returned values from the output stream of that process. Tim Upvote 0 Downvote
Think you'll have to do Runtime.getRuntime().exec("set") to get a Process and read the returned values from the output stream of that process. Tim