El método getProperty(key, defaultValue) de la clase Properties se utiliza para obtener el valor asignado a esta clave, pasado como parámetro, en este objeto de propiedades. Este método obtendrá el valor correspondiente a esta clave, si está presente, y lo devolverá. Si no existe tal asignación, devuelve el valor predeterminado.
Sintaxis:
String pública getProperty (clave de string, valor predeterminado de string)
Parámetros: este método acepta dos parámetros:
- clave : cuyo mapeo se verificará en este objeto de Propiedades.
- defaultValue : que es el mapeo predeterminado de la clave
Devoluciones: este método devuelve el valor obtenido correspondiente a esta clave, si está presente. Si no existe tal asignación, devuelve el valor predeterminado.
Los siguientes programas ilustran el método getProperty(key, defaultValue):
Programa 1:
// Java program to demonstrate // getProperty(key, defaultValue) method. import java.util.*; public class GFG { // Main method public static void main(String[] args) { // Create a properties and add some values Properties properties = new Properties(); properties.put("Pen", 10); properties.put("Book", 500); properties.put("Clothes", 400); properties.put("Mobile", 5000); // Print Properties details System.out.println("Properties: " + properties.toString()); // Getting the value of Pen System.out.println("Value of Pen: " + properties .getProperty("Pen", 200)); // Getting the value of Phone System.out.println("Value of Phone: " + properties .getProperty("Phone", 200)); } }
Properties: {Book=500, Mobile=5000, Pen=10, Clothes=400} Value of Pen: 10 Value of Phone: 200
Programa 2:
// Java program to demonstrate // getProperty(key, defaultValue) method. import java.util.*; public class GFG { // Main method public static void main(String[] args) { // Create a properties and add some values Properties properties = new Properties(); properties.put(1, "100RS"); properties.put(2, "500RS"); properties.put(3, "1000RS"); // Print Properties details System.out.println("Current Properties: " + properties.toString()); // Getting the value of 1 System.out.println("Value of 1: " + properties .getProperty(1, "200RS")); // Getting the value of 5 System.out.println("Value of 5: " + properties .getProperty(5, "200RS")); } }
Current Properties: {3=1000RS, 2=500RS, 1=100RS} Value of 1: 100RS Value of 5: 200RS
Referencias: https://docs.oracle.com/javase/9/docs/api/java/util/Properties.html#getProperty-java.lang.String-java.lang.String-
Publicación traducida automáticamente
Artículo escrito por Kirti_Mangal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA