Method setProperty(String key, String value)
Return type:
java.lang.String
Member of:
java.lang.System
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
System.setProperty(key, theBundle.getString(key));
2
System.setProperty("nbjunit.workdir","c:/z");
3
System.setProperty("HPSF.testdata.path",
4
System.setProperty("java.protocol.handler.pkgs", "com.sun.net.ssl.internal.www.protocol" );
5
System.setProperty("org.netbeans.core.modules", "0");
6
System.setProperty("apple.laf.useScreenMenuBar", "true");
7
System.setProperty("org.xml.sax.driver", "org.apache.xerces.parsers.SAXParser");
8
System.setProperty("com.apple.mrj.application.growbox.intrudes", "true");
9
System.setProperty("juddi.homeDir", hp);
10
System.setProperty( "proxyHost", proxyHost );
11
System.setProperty("com.webobjects.version", webObjectsVersion());
12
System.setProperty("ant.home", antHome); //$NON-NLS-1$
13
System.setProperty( Context.INITIAL_CONTEXT_FACTORY,
14
System.setProperty("java.protocol.handler.pkgs", value);
15
System.setProperty("helma.logdir", dir.getAbsolutePath());
16
System.setProperty(
17
System.setProperty("uzoo.username", username);
18
System.setProperty("isql.home", getBaseDirectory().getAbsolutePath());
19
System.setProperty("log4j.configuration", "file:" + conf);
20
System.setProperty("OJB.properties", getPropertiesFile());
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.