Core API
How can I get current working directory?
A system properties named user.dir can be used if you want to find the current working directory of your Java program. package org.kodejava.io; public class CurrentDirectoryExample { public static void main(String[] args) { // System property key to get current working directory. String USER_DIR_KEY = "user.dir"; String currentDir = System.getProperty(USER_DIR_KEY); System.out.println("Working Directory: " + currentDir); […]
Artikel oleh Wayan · Sumber: Kode Java ↗
Terjemahan artikel ini belum tersedia. Isi asli ditampilkan.
A system properties named user.dir can be used if you want to find the current working directory of your Java program.
package org.kodejava.io;
public class CurrentDirectoryExample {
public static void main(String[] args) {
// System property key to get current working directory.
String USER_DIR_KEY = "user.dir";
String currentDir = System.getProperty(USER_DIR_KEY);
System.out.println("Working Directory: " + currentDir);
}
}
Result example:
Working Directory: F:\Wayan\Kodejava\kodejava-example
