當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java ListResourceBundle getContents()用法及代碼示例


ListResourceBundle類getContents()方法

  • getContents() 方法可在java.util包。
  • getContents() 方法用於將內容轉換為 Object 數組 (Object [][]) 的形式,每個項目都是 Object[][] 中的對象對,其中第一個索引表示關鍵元素,第二個索引表示鏈接的值元素使用對象數組中的鍵。
  • getContents() 方法是一個非靜態方法,它隻能通過類對象訪問,如果我們嘗試使用類名訪問方法,那麽我們將得到一個錯誤。
  • getContents() 方法獲取內容時不拋出異常。

用法:

    protected abstract Object[][] getContents();

參數:

  • 它不接受任何參數。

返回值:

該方法的返回類型是Object [] [],它以鍵值對的形式返回包含兩個對象的二維對象數組。

例:

// Java program to demonstrate the example 
// of Object[][] getContents()  method of  
// ListResourceBundle 

import java.util.*;

// Instantiates a class that extends
// ListResourceBundle 
class GetContents extends ListResourceBundle {
 // By using getContent() method is to
 // get the contents in the form of 
 // 2D objects
 protected Object[][] getContents() {
  return new Object[][] {
   {
    "10",
    "C"
   }, {
    "20",
    "C++"
   }, {
    "30",
    "JAVA"
   }, {
    "40",
    "SFDC"
   }, {
    "50",
    "PHP"
   }
  };
 }
}

public class Main {
 public static void main(String[] args) {
  // Instantiates an object of
  // GetContents
  GetContents get_c = new GetContents();

  // Display the value for the 
  // given key element
  System.out.println("get_c.getString(40):" + get_c.getString("40"));
 }
}

輸出

get_c.getString(40):SFDC


相關用法


注:本文由純淨天空篩選整理自Preeti Jain大神的英文原創作品 Java ListResourceBundle getContents() Method with Example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。