Java in a Nutshell, 5th Edition [Electronic resources] نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

Java in a Nutshell, 5th Edition [Electronic resources] - نسخه متنی

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید


PropertyResourceBundlejava.util

Java 1.1

This class is a concrete subclass of
ResourceBundle. It reads a
Properties file from a specified
InputStream and implements the
ResourceBundle API for looking up named resources
from the resulting Properties object. A
Properties file contains lines of the form:

name=value

Each such line defines a named property with the specified
String value. Although you can instantiate a
PropertyResourceBundle yourself, it is more common
to simply define a Properties file and then allow
ResourceBundle.getBundle( ) to look up that file
and return the necessary PropertyResourceBundle
object. See also Properties and
ResourceBundle.


Figure 16-50. java.util.PropertyResourceBundle

public class

PropertyResourceBundle extends ResourceBundle {
// Public Constructors
public

PropertyResourceBundle (java.io.InputStream

stream ) throws java.io.IOException;
// Public Methods Overriding ResourceBundle
public Enumeration<String>

getKeys ( );
public Object

handleGetObject (String

key );
}



    / 1191