Dec 14, 2006 #1 lovekang Programmer Joined Feb 16, 2006 Messages 86 Location 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 Joined May 3, 2000 Messages 1,264 Location 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