- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for USER_DIR (0.12 sec)
-
src/test/java/org/codelibs/core/lang/SystemUtilTest.java
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/SystemUtil.java
*/ public static final String JAVA_IO_TMPDIR = System.getProperty("java.io.tmpdir"); /** * <code>user.dir</code> システムプロパティ。 */ public static final String USER_DIR = System.getProperty("user.dir"); /** * <code>user.home</code> システムプロパティ。 */ public static final String USER_HOME = System.getProperty("user.home"); public static long currentTimeMillis() {
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2.2K bytes - Viewed (0) -
guava/src/com/google/common/base/StandardSystemProperty.java
LINE_SEPARATOR("line.separator"), /** User's account name. */ USER_NAME("user.name"), /** User's home directory. */ USER_HOME("user.home"), /** User's current working directory. */ USER_DIR("user.dir"); private final String key; StandardSystemProperty(String key) { this.key = key; } /** Returns the key used to look up this system property. */ public String key() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Feb 23 15:09:35 UTC 2023 - 5K bytes - Viewed (0)