加载中...
The Wayback Machine - https://sup1a9wrlpyh5li9ro.vcoronado.top/web/20090218032955/http://developer.android.com:80/reference/java/util/PropertyResourceBundle.html
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.

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 input stream.
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)

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

Parameters
stream the input stream
Throws
IOException

Public Methods

public Enumeration<String> getKeys ()

Returns the names of the resources contained in this PropertyResourceBundle.

Returns
  • an Enumeration of the resource names

public Object handleGetObject (String key)

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