Method getProperty(String key)
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 xml.append("\r\n");
2 private final static byte[] LINE_SEPARATOR = System.getProperty ("line.separator").getBytes ();
3 private File homeDirectory = new File(System.getProperty("user.home")); //NOI18N
4 private static volatile File last_rootFile = new File (System.getProperty("user.home")); // NOI18N
5 private JTextField rootDirectoryField = new JTextField(System.getProperty("user.home"));
6 private File pcpPropsFile=new File(System.getProperty("user.home")+System.getProperty("file.separator")+"PCPanel2.ini");
7 protected static final File homeDir = new File(System.getProperty("user.home"));
8 public static final byte[] bCRLF = (System.getProperty("line.separator")).getBytes();
9 public static final File DEFAULT_HOME_DIR = new File(System.getProperty("user.home"), ".jmsn");
10 protected File openDirectory = new File(System.getProperty("user.dir"));
11 private final static boolean debug = System.getProperty("Config.debug") != null;
12 System.getProperty("line.separator").toCharArray();
13 new JTextField(System.getProperty("user.name"));
14 new File(System.getProperty("isql.home", System.getProperty("user.home") + File.separator + ".iSQL-Viewer"));
15 System.getProperty("line.separator").toCharArray();
16 (null != System.getProperty("com.develop.jawin.traceRefs"));
17 System.getProperty("line.separator").getBytes(), new byte[] { '\r', '\n' }); //$NON-NLS-1$
18 = new File(System.getProperty("user.home"), ".keystore");
19 this(new File(new File(System.getProperty("user.home")),fileName),header);
20 os = System.getProperty("os.name");
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.