当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。