On Fri, Mar 23, 2001 at 12:59:17PM +0100, Peter Arnold wrote:
| Hello all,
| I am new to Jython-Users and I am beginner to jython...
|
| Does anyone know what the -D option by invoking tehe Jython-Interpreter can
| do?
| where can I get more Information about
| " jython - Dprop=value Set the jython property prop to value "
The -D option is a part of the JVM. It is used to define system
properties. They can be accessed with
java.lang.System.getProperty( "prop" )
PS. Don't put a space between the '-' and the 'D' (as the above
example does). My favorite is :
-Dpython.security.respectJavaAccessibility=false
<grin>
-D
|