
- Java.util - Home
- Java.util - ArrayDeque
- Java.util - ArrayList
- Java.util - Arrays
- Java.util - BitSet
- Java.util - Calendar
- Java.util - Collections
- Java.util - Currency
- Java.util - Date
- Java.util - Dictionary
- Java.util - EnumMap
- Java.util - EnumSet
- Java.util - Formatter
- Java.util - GregorianCalendar
- Java.util - HashMap
- Java.util - HashSet
- Java.util - Hashtable
- Java.util - IdentityHashMap
- Java.util - LinkedHashMap
- Java.util - LinkedHashSet
- Java.util - LinkedList
- Java.util - ListResourceBundle
- Java.util - Locale
- Java.util - Observable
- Java.util - PriorityQueue
- Java.util - Properties
- Java.util - PropertyPermission
- Java.util - PropertyResourceBundle
- Java.util - Random
- Java.util - ResourceBundle
- Java.util - ResourceBundle.Control
- Java.util - Scanner
- Java.util - ServiceLoader
- Java.util - SimpleTimeZone
- Java.util - Stack
- Java.util - StringTokenizer
- Java.util - Timer
- Java.util - TimerTask
- Java.util - TimeZone
- Java.util - TreeMap
- Java.util - TreeSet
- Java.util - UUID
- Java.util - Vector
- Java.util - WeakHashMap
- Java.util - Interfaces
- Java.util - Exceptions
- Java.util - Enumerations
- Java.util Useful Resources
- Java.util - Useful Resources
- Java.util - Discussion
Java PropertyResourceBundle handleGetObject(String) Method
Description
The Java PropertyResourceBundle handleGetObject(String) method returns the object in the bundle for the specified key. The method returns null if the bundle doesn't contain the required object.
Declaration
Following is the declaration for java.util.PropertyResourceBundle.handleGetObject(String) method
public Object handleGetObject(String key)
Parameters
key − The key for the required object.
Return Value
This method returns the object for the specified key.
Exception
NA
Getting Objects from a PropertyResourceBundle Instance from ByteStream Example
The following example shows the usage of Java PropertyResourceBundle handleGetObject() method. We created a InputStream of given content and then using that stream a PropertyResourceBundle object is created. Then using handleGetObject() method, we're getting all the resources and then values are printed.
package com.tutorialspoint; import java.io.IOException; import java.io.InputStream; import java.io.StringBufferInputStream; import java.util.PropertyResourceBundle; public class PropertyResourceBundleDemo { public static void main(String[] args) { // Prepare content for simulating property files String fileContent = "# Integer value 1\n" + "s1 = 1\n" + "# String value PropertyResourceBundleDemo\n" + "s2 = PropertyResourceBundleDemo\n" + "# Date value Fri Jan 31 00:00:00 IST 3913\n" + "s3 = Fri Jan 31 00:00:00 IST 3913"; InputStream propStream = new StringBufferInputStream(fileContent); try { // Create property resource bundle PropertyResourceBundle bundle = new PropertyResourceBundle(propStream); // Get resources Object res1 = bundle.handleGetObject("s1"); Object res2 = bundle.handleGetObject("s2"); Object res3 = bundle.handleGetObject("s3"); // Print resource contents System.out.println("[Resource1] "+res1); System.out.println("[Resource2] "+res2); System.out.println("[Resource3] "+res3); } catch (IOException e) { e.printStackTrace(); } } }
Output
Let us compile and run the above program, this will produce the following result −
[Resource1] 1 [Resource2] PropertyResourceBundleDemo [Resource3] Fri Jan 31 00:00:00 IST 3913
Getting Objects from a PropertyResourceBundle Instance from StringReader Example
The following example shows the usage of Java PropertyResourceBundle handleGetObject() method. We created a InputStream of given content and then using that stream a PropertyResourceBundle object is created. Then using handleGetObject() method, we're getting all the resources and then values are printed.
package com.tutorialspoint; import java.io.IOException; import java.io.StringReader; import java.util.PropertyResourceBundle; public class PropertyResourceBundleDemo { public static void main(String[] args) { // Prepare content for simulating property files String fileContent = "# Integer value 1\n" + "s1 = 1\n" + "# String value PropertyResourceBundleDemo\n" + "s2 = PropertyResourceBundleDemo\n" + "# Date value Fri Jan 31 00:00:00 IST 3913\n" + "s3 = Fri Jan 31 00:00:00 IST 3913"; StringReader reader = new StringReader(fileContent); try { // Create property resource bundle PropertyResourceBundle bundle = new PropertyResourceBundle(reader); // Get resources Object res1 = bundle.handleGetObject("s1"); Object res2 = bundle.handleGetObject("s2"); Object res3 = bundle.handleGetObject("s3"); // Print resource contents System.out.println("[Resource1] "+res1); System.out.println("[Resource2] "+res2); System.out.println("[Resource3] "+res3); } catch (IOException e) { e.printStackTrace(); } } }
Output
Let us compile and run the above program, this will produce the following result −
[Resource1] 1 [Resource2] PropertyResourceBundleDemo [Resource3] Fri Jan 31 00:00:00 IST 3913