java.util.ListResourceBundle.handleGetObject()方法實例
java.util.ListResourceBundle.handleGetObject(String key) 方法獲取一個對象從這個資源包的給定鍵。返回null,如果這個資源包不包含對象的給定鍵。
聲明
以下是java.util.ListResourceBundle.handleGetObject()方法的聲明
public final Object handleGetObject(String key)
參數
-
key -- 鍵對所需對象
返回值
此方法返回的對象為給定的鍵,則返回null
異常
-
NA
例子
下麵的示例演示java.util.ListResourceBundle.handleGetObject()方法的用法。
package com.yiibai; import java.util.*; // create a class that extends to ListResourceBundle class MyResources extends ListResourceBundle { // get contents must be implemented protected Object[][] getContents() { return new Object[][]{ {"hello", "Hello World!"}, {"bye", "Goodbye World!"}, {"goodnight", "Goodnight World!"} }; } } public class ListResourceBundleDemo { public static void main(String[] args) { // create a new MyResources instance MyResources mr = new MyResources(); // get the object for key hello System.out.println("" + mr.handleGetObject("hello")); } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
Hello World!