Java ListResourceBundle getContents() 方法



描述

Java ListResourceBundle getContents() 方法返回一个数组,其中每个项目都是一个对象对,包含在一个 Object 数组中。每对中的第一个元素是键,必须是字符串,第二个元素是与该键关联的值。

声明

以下是 java.util.ListResourceBundle.getContents() 方法的声明

protected abstract Object[][] getContents()

参数

返回值

此方法返回一个 Object 数组,表示键值对。

异常

定义字符串、整数对的 ListResourceBundle 内容示例

以下示例演示了如何使用 Java ListResourceBundle getContents() 方法向 ListResourceBundle 添加条目。我们创建了一个 ListResourceBundle 对象,其内容为一个二维数组,包含字符串、整数对。然后通过重写 getContents() 方法添加了一些条目,并使用键检索值并打印出来。

package com.tutorialspoint;

import java.util.Enumeration;
import java.util.ListResourceBundle;

// create a class that extends to ListResourceBundle
class MyResources extends ListResourceBundle {

   // get contents must be implemented
   protected Object[][] getContents() {
      return new Object[][] {
         {"1", 1},
         {"2", 2},
         {"3", 3}
      };
   }
}

public class ListResourceBundleDemo {
   public static void main(String[] args) {

      // create a new MyResources instance
      MyResources mr = new MyResources();
	  
      // print the value for key 1
      System.out.println("" + mr.handleGetObject("1"));
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果。

1
2
3

定义字符串、字符串对的 ListResourceBundle 内容示例

以下示例演示了如何使用 Java ListResourceBundle getContents() 方法向 ListResourceBundle 添加条目。我们创建了一个 ListResourceBundle 对象,其内容为一个二维数组,包含字符串、字符串对。然后通过重写 getContents() 方法添加了一些条目,并使用键检索值并打印出来。

package com.tutorialspoint;

import java.util.Enumeration;
import java.util.ListResourceBundle;

// create a class that extends to ListResourceBundle
class MyResources extends ListResourceBundle {

   // get contents must be implemented
   protected Object[][] getContents() {
      return new Object[][] {
         {"1", "Hello World!"},
         {"2", "Goodbye World!"},
         {"3", "Goodnight World!"}
      };
   }
}

public class ListResourceBundleDemo {
   public static void main(String[] args) {

      // create a new MyResources instance
      MyResources mr = new MyResources();
	  
      // print the value for key 1
      System.out.println("" + mr.handleGetObject("1"));
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果。

Hello World!

定义字符串、对象对的 ListResourceBundle 内容示例

以下示例演示了如何使用 Java ListResourceBundle getContents() 方法向 ListResourceBundle 添加条目。我们创建了一个 ListResourceBundle 对象,其内容为一个二维数组,包含字符串、Student 对象对。然后通过重写 getContents() 方法添加了一些条目,并使用键检索值并打印出来。

package com.tutorialspoint;

import java.util.Enumeration;
import java.util.ListResourceBundle;

// create a class that extends to ListResourceBundle
class MyResources extends ListResourceBundle {

   // get contents must be implemented
   protected Object[][] getContents() {
      return new Object[][] {
         {"1", new Student(1, "Julie")},
         {"2", new Student(2, "Robert")},
         {"3", new Student(3, "Adam")}
      };
   }
}

public class ListResourceBundleDemo {
   public static void main(String[] args) {

      // create a new MyResources instance
      MyResources mr = new MyResources();
	  
      // print the value for key 1
      System.out.println("" + mr.handleGetObject("1"));
   }
}
class Student {
   int rollNo;
   String name;

   Student(int rollNo, String name){
      this.rollNo = rollNo;
      this.name = name;
   }

   @Override
   public String toString() {
      return "[ " + this.rollNo + ", " + this.name + " ]";
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果。

[ 1, Julie ]
java_util_listresourcebundle.htm
广告