métodos getproperty()
Sintaxis:
public static String getProperty(String key)
Parámetro:
- clave: clave cuya propiedad del sistema queremos
Devoluciones :
- Propiedad del sistema como se especifica en la clave
- Nulo : si no hay ninguna propiedad presente con esa clave.
Ejemplo:
Java
// Java Program to Find // current working directory import java.io.*; public class GFG { public static void main(String[] args) { // Getting the path of system property String path = System.getProperty("user.dir"); // Printing the path of the working Directory System.out.println("Working Directory = " + path); } }
Producción:
Publicación traducida automáticamente
Artículo escrito por kumar_satyam y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA