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 PropertyResourceBundle.
Object handleGetObject(String key)
Returns the named resource from this PropertyResourceBundle, 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)

Since: API Level 1

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 ()

Since: API Level 1

Returns the names of the resources contained in this PropertyResourceBundle.

Returns
  • an Enumeration of the resource names

public Object handleGetObject (String key)

Since: API Level 1

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

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