public class

PropertyResourceBundle

extends ResourceBundle
java.lang.Object
   ↳ java.util.ResourceBundle
     ↳ java.util.PropertyResourceBundle

Class Overview

PropertyResourceBundle loads resources from an InputStream. All resources are Strings. The resources must be of the form key=value, one resource per line (see Properties).

Summary

[Expand]
Inherited Fields
From class java.util.ResourceBundle
Public Constructors
PropertyResourceBundle(InputStream stream)
Constructs a new instance of PropertyResourceBundle and loads the properties file from the specified InputStream.
Public Methods
Enumeration<String> getKeys()
Returns the names of the resources contained in this ResourceBundle.
Object handleGetObject(String key)
Returns the named resource from this ResourceBundle, or null if the resource is not found.
[Expand]
Inherited Methods
From class java.util.ResourceBundle
From class java.lang.Object

Public Constructors

public PropertyResourceBundle (InputStream stream)

Constructs a new instance of PropertyResourceBundle and loads the properties file from the specified InputStream.

Parameters
stream the InputStream.
Throws
IOException if an error occurs during a read operation on the InputStream.

Public Methods

public Enumeration<String> getKeys ()

Returns the names of the resources contained in this ResourceBundle.

Returns
  • an Enumeration of the resource names.

public Object handleGetObject (String key)

Returns the named resource from this ResourceBundle, or null if the resource is not found.

Parameters
key the name of the resource.
Returns
  • the resource object.