java.util.ListResourceBundle.getContents()方法實例
java.util.ListResourceBundle.getContents() 方法返回一個數組,其中每個項目是一個對對象的Object數組。每對的第一個元素是鍵,它必須是一個字符串,而第二個元素是與該鍵關聯的值
聲明
以下是java.util.ListResourceBundle.getContents()方法的聲明
protected abstract Object[][] getContents()
參數
-
NA
返回值
此方法返回一個Object數組,表示一個鍵 - 值對的數組。
異常
-
NA
例子
下麵的例子顯示java.util.ListResourceBundle.getContents()方法的用法。
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(); // print the string for key hello System.out.println("" + mr.getString("hello")); } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
Hello World!