Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm writing a tool to check preconditions for an application. One prerequisite are specific JRE proxy settings. But I couldn't figure out, where JRE stores those informations on a windows machine (this should work on XP, Vista 32/64Bit and win7 32/64Bit) after setting them in the java control panel.

Any ideas?

share|improve this question

3 Answers

(User Application Data Folder)\Sun\Java\Deployment\deployment.properties

If any proxy settings are configured they can be found in this file. Sometimes a systemwide configuration exists then its found in c:\windows\sun...

http://download.oracle.com/javase/1.5.0/docs/guide/deployment/deployment-guide/properties.html

share|improve this answer

check if the system property

http.proxyHost
http.proxyPort

are set. There are some more properties like usernames and different ones for socks proxies but basically i would do it like this.

Description of some of the proxy properties http://download.oracle.com/javase/6/docs/technotes/guides/net/proxies.html

share|improve this answer
Thanks, that would help, but the tool I'm writing is in C#. I probably should have mentioned that ;) – Peter Oct 13 '11 at 7:49
i wondered about the C# tag in the post ;-) so i think jonas s post is the way to go – gabe Oct 13 '11 at 7:51

Just print all the system properties once and see if they contain the ones you're looking for.

System.getProperties() 

in Java

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.