java.net.preferIPv4Stack
How to set this from within a program. I know how to add it to the command line with -D but how do I do it from with an application ?
# 1
As is typical with this, I have found the answer with the next google queryProperties props=System.getProperties();props.setProperty("java.net.preferIPv4Stack", "true");Alex